add initial chat server stuff

This commit is contained in:
sam 2024-01-16 22:20:19 +01:00
parent 3025f1380c
commit 0e71e9dc5f
18 changed files with 722 additions and 40 deletions

View file

@ -0,0 +1,4 @@
create table tokens (
token text primary key,
account_id text not null references accounts (id) on delete cascade
);