aboutsummaryrefslogtreecommitdiff
path: root/migrations/20220112135205_reactionroles.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20220112135205_reactionroles.sql')
-rw-r--r--migrations/20220112135205_reactionroles.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/migrations/20220112135205_reactionroles.sql b/migrations/20220112135205_reactionroles.sql
new file mode 100644
index 0000000..303e025
--- /dev/null
+++ b/migrations/20220112135205_reactionroles.sql
@@ -0,0 +1,9 @@
+-- Add migration script here
+CREATE TABLE reaction_roles (
+ id SERIAL PRIMARY KEY,
+ channel_id TEXT NOT NULL,
+ message_id TEXT NOT NULL,
+ guild_id TEXT NOT NULL,
+ reaction TEXT NOT NULL,
+ role_id TEXT NOT NULL
+);