aboutsummaryrefslogtreecommitdiff
path: root/migrations/20220503185837_review_channel.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20220503185837_review_channel.sql')
-rw-r--r--migrations/20220503185837_review_channel.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/migrations/20220503185837_review_channel.sql b/migrations/20220503185837_review_channel.sql
new file mode 100644
index 0000000..d76049e
--- /dev/null
+++ b/migrations/20220503185837_review_channel.sql
@@ -0,0 +1,7 @@
+-- Add migration script here
+CREATE TABLE channels (
+ id SERIAL PRIMARY KEY,
+ channel_id TEXT NOT NULL,
+ purpose TEXT NOT NULL,
+ guild_id TEXT NOT NULL
+);