diff options
Diffstat (limited to 'migrations')
-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 +); |