@factor-wise/prisma-schema 2.0.54 → 2.0.55
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 +4 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2461,6 +2461,10 @@ model lms_users {
|
|
|
2461
2461
|
branch String? @db.VarChar(100)
|
|
2462
2462
|
username String @unique(map: "username") @db.VarChar(100)
|
|
2463
2463
|
password String @db.VarChar(255)
|
|
2464
|
+
otp String? @db.VarChar(255)
|
|
2465
|
+
attempts Int?
|
|
2466
|
+
expire_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2467
|
+
isVerified Boolean @default(false)
|
|
2464
2468
|
role String? @db.VarChar(50)
|
|
2465
2469
|
status String? @default("Active") @db.VarChar(20)
|
|
2466
2470
|
session_id String? @db.VarChar(255)
|