add basic guild create + message create endpoints
This commit is contained in:
parent
5b23095520
commit
e57bff00c2
27 changed files with 367 additions and 36 deletions
|
@ -31,6 +31,8 @@ create table guilds_users (
|
|||
guild_id text not null references guilds (id) on delete cascade,
|
||||
user_id text not null references users (id) on delete cascade,
|
||||
|
||||
joined_at timestamptz not null default now(),
|
||||
|
||||
primary key (guild_id, user_id)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue