1
0
Fork 0

PK mentions now include member name

This commit is contained in:
Cadence Ember 2024-02-01 22:22:48 +13:00
parent 64671519bd
commit 98477dc0f6
4 changed files with 16 additions and 6 deletions

View file

@ -1,5 +1,6 @@
CREATE TABLE IF NOT EXISTS sim_proxy (
user_id TEXT NOT NULL,
proxy_owner_id TEXT NOT NULL,
displayname TEXT NOT NULL,
PRIMARY KEY(user_id)
) WITHOUT ROWID;

1
db/orm-defs.d.ts vendored
View file

@ -66,6 +66,7 @@ export type Models = {
sim_proxy: {
user_id: string
proxy_owner_id: string
displayname: string
}
webhook: {