add initial chat server stuff
This commit is contained in:
parent
3025f1380c
commit
0e71e9dc5f
18 changed files with 722 additions and 40 deletions
4
identity/migrations/20240116172715_tokens.sql
Normal file
4
identity/migrations/20240116172715_tokens.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
create table tokens (
|
||||
token text primary key,
|
||||
account_id text not null references accounts (id) on delete cascade
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue