@factor-wise/prisma-schema 2.0.70 → 2.0.72
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 +2 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2553,6 +2553,8 @@ model lms_users {
|
|
|
2553
2553
|
status String? @default("Active") @db.VarChar(20)
|
|
2554
2554
|
session_id String? @db.VarChar(255)
|
|
2555
2555
|
profile_image String? @db.Text
|
|
2556
|
+
face_descriptor Json?
|
|
2557
|
+
face_auth_bypass Boolean @default(false)
|
|
2556
2558
|
created_by String? @db.VarChar(100)
|
|
2557
2559
|
created_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2558
2560
|
updated_at DateTime? @default(now()) @db.Timestamp(0)
|