diff options
author | Cara Salter <cara@devcara.com> | 2022-05-13 10:50:42 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-05-13 10:50:42 -0400 |
commit | dc1039fa1e4ca4fe55e9ab2123260aa1a2006503 (patch) | |
tree | 0328a9950b2f87280acba4662ac2de3bc63b676e /migrations/20220503185837_review_channel.sql | |
parent | 5999e6a803a7b848acf054918fec9ee5024d5697 (diff) | |
download | glitch-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/20220503185837_review_channel.sql')
-rw-r--r-- | migrations/20220503185837_review_channel.sql | 7 |
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 +); |