@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 +1 -1
- package/prisma/schema.prisma +8 -6
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2363,12 +2363,14 @@ model lms_users {
|
|
|
2363
2363
|
}
|
|
2364
2364
|
|
|
2365
2365
|
model lms_users_permissions {
|
|
2366
|
-
id
|
|
2367
|
-
user_id
|
|
2368
|
-
sidebar_access
|
|
2369
|
-
profile_access
|
|
2370
|
-
|
|
2371
|
-
|
|
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")
|