feat: add account settings

This commit is contained in:
Steve Korshakov 2025-07-26 13:51:22 -07:00
parent 93b48e6e62
commit c865d359b8
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Account" ADD COLUMN "settings" TEXT;

View File

@ -24,6 +24,7 @@ model Account {
seq Int @default(0)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
settings String?
Session Session[]
AccountPushToken AccountPushToken[]
TerminalAuthRequest TerminalAuthRequest[]