@factor-wise/prisma-schema 2.0.71 → 2.0.73
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 +3 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -716,8 +716,9 @@ model customer_extended {
|
|
|
716
716
|
id Int @id @default(autoincrement())
|
|
717
717
|
customerID Int @unique
|
|
718
718
|
isBtCase Boolean @default(false)
|
|
719
|
+
attempts Int? @default(0)
|
|
720
|
+
lastAttempt DateTime?
|
|
719
721
|
customer customer @relation(fields: [customerID], references: [customerID])
|
|
720
|
-
|
|
721
722
|
}
|
|
722
723
|
|
|
723
724
|
model customer_credit_remarks {
|
|
@@ -2554,6 +2555,7 @@ model lms_users {
|
|
|
2554
2555
|
session_id String? @db.VarChar(255)
|
|
2555
2556
|
profile_image String? @db.Text
|
|
2556
2557
|
face_descriptor Json?
|
|
2558
|
+
face_auth_bypass Boolean @default(false)
|
|
2557
2559
|
created_by String? @db.VarChar(100)
|
|
2558
2560
|
created_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2559
2561
|
updated_at DateTime? @default(now()) @db.Timestamp(0)
|