aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-05-13 10:50:42 -0400
committerCara Salter <cara@devcara.com>2022-05-13 10:50:42 -0400
commitdc1039fa1e4ca4fe55e9ab2123260aa1a2006503 (patch)
tree0328a9950b2f87280acba4662ac2de3bc63b676e /migrations
parent5999e6a803a7b848acf054918fec9ee5024d5697 (diff)
downloadglitch-ng-dc1039fa1e4ca4fe55e9ab2123260aa1a2006503.tar.gz
glitch-ng-dc1039fa1e4ca4fe55e9ab2123260aa1a2006503.zip
filter: Fully flesh out deletion/review handler
WIP: Currently, deletions do not work. Error returned: User event listener encountered an error on InteractionCreate event: The bot is not author of this message.
Diffstat (limited to 'migrations')
-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
+);