Initial commit
This commit is contained in:
commit
8c6f7d4379
21 changed files with 4184 additions and 0 deletions
9
migrations/00000_init.sql
Normal file
9
migrations/00000_init.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
create table
|
||||
guilds (id text not null primary key, script text null);
|
||||
|
||||
create table
|
||||
messages (
|
||||
guild_id text not null references guilds (id),
|
||||
message_id text not null,
|
||||
primary key (guild_id, message_Id)
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue