Merge branch 'dev' into feat/internal-user-passkey-support

This commit is contained in:
Milo Schwartz
2025-07-14 17:43:01 -04:00
committed by GitHub
32 changed files with 1071 additions and 1123 deletions

View File

@@ -125,6 +125,9 @@ export const users = sqliteTable("user", {
twoFactorEnabled: integer("twoFactorEnabled", { mode: "boolean" })
.notNull()
.default(false),
twoFactorSetupRequested: integer("twoFactorSetupRequested", {
mode: "boolean"
}).default(false),
twoFactorSecret: text("twoFactorSecret"),
emailVerified: integer("emailVerified", { mode: "boolean" })
.notNull()