feat: add settingsVersion

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

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Account" ADD COLUMN "settingsVersion" INTEGER NOT NULL DEFAULT 0;

View File

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