@factor-wise/prisma-schema 2.0.39 → 2.0.40

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.39",
3
+ "version": "2.0.40",
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",
@@ -2363,12 +2363,14 @@ model lms_users {
2363
2363
  }
2364
2364
 
2365
2365
  model lms_users_permissions {
2366
- id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
2367
- user_id Int @unique
2368
- sidebar_access Json?
2369
- profile_access Json?
2370
- reports_sidebar Json?
2371
- reports_access Json?
2366
+ id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
2367
+ user_id Int @unique
2368
+ sidebar_access Json?
2369
+ profile_access Json?
2370
+ users_permissions Json?
2371
+ reports_sidebar Json?
2372
+ reports_access Json?
2373
+
2372
2374
  created_at DateTime? @default(now()) @db.Timestamp(0)
2373
2375
  updated_at DateTime? @default(now()) @db.Timestamp(0)
2374
2376
  lms_users lms_users @relation(fields: [user_id], references: [userID], onDelete: Cascade, onUpdate: NoAction, map: "lms_users_permissions_ibfk_1")