feat: add qrCode field to Account for QR re-auth

This commit is contained in:
2026-05-29 10:58:04 +05:30
parent 5d9df64849
commit 43f4133f1d
2 changed files with 3 additions and 0 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Account" ADD COLUMN "qrCode" TEXT;
+1
View File
@@ -108,6 +108,7 @@ model Account {
sessionPath String
displayName String?
status AccountStatus @default(ACTIVE)
qrCode String?
groups Group[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt