Initial commit

This commit is contained in:
2024-10-27 17:08:58 +01:00
commit 9f0435057e
5 changed files with 139 additions and 0 deletions

17
ddl.sql Normal file
View 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)
);