Initial commit
This commit is contained in:
17
ddl.sql
Normal file
17
ddl.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
create table guild (
|
||||
id integer primary key,
|
||||
name text
|
||||
);
|
||||
|
||||
create table stinky (
|
||||
id integer primary key,
|
||||
name text,
|
||||
guild integer references guild(id)
|
||||
);
|
||||
|
||||
create table note (
|
||||
id integer primary key,
|
||||
content text,
|
||||
timestamp string,
|
||||
stinky integer references stinky(id)
|
||||
);
|
||||
Reference in New Issue
Block a user