@factor-wise/prisma-schema 2.0.73 → 2.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +1 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2549,6 +2549,7 @@ model lms_users {
|
|
|
2549
2549
|
otp String? @db.VarChar(255)
|
|
2550
2550
|
attempts Int?
|
|
2551
2551
|
expire_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2552
|
+
lock_until DateTime? @db.Timestamp(0)
|
|
2552
2553
|
isVerified Boolean @default(false)
|
|
2553
2554
|
role String? @db.VarChar(50)
|
|
2554
2555
|
status String? @default("Active") @db.VarChar(20)
|