@factor-wise/prisma-schema 2.0.69 → 2.0.71

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factor-wise/prisma-schema",
3
- "version": "2.0.69",
3
+ "version": "2.0.71",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -2552,6 +2552,8 @@ model lms_users {
2552
2552
  role String? @db.VarChar(50)
2553
2553
  status String? @default("Active") @db.VarChar(20)
2554
2554
  session_id String? @db.VarChar(255)
2555
+ profile_image String? @db.Text
2556
+ face_descriptor Json?
2555
2557
  created_by String? @db.VarChar(100)
2556
2558
  created_at DateTime? @default(now()) @db.Timestamp(0)
2557
2559
  updated_at DateTime? @default(now()) @db.Timestamp(0)