summaryrefslogtreecommitdiff
path: root/migrations/20240904153315_channel.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20240904153315_channel.sql')
-rw-r--r--migrations/20240904153315_channel.sql20
1 files changed, 0 insertions, 20 deletions
diff --git a/migrations/20240904153315_channel.sql b/migrations/20240904153315_channel.sql
deleted file mode 100644
index e62b51f..0000000
--- a/migrations/20240904153315_channel.sql
+++ /dev/null
@@ -1,20 +0,0 @@
-create table channel (
- id text
- not null
- primary key,
- name text
- not null
- unique
-);
-
-create table channel_member (
- channel text
- not null
- references channel,
- login text
- not null
- references login,
- primary key (channel, login)
-);
-
-create index channel_member_login on channel_member (login);