@factor-wise/prisma-schema 2.0.34 → 2.0.35
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 +6 -4
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2360,10 +2360,12 @@ model lms_users {
|
|
|
2360
2360
|
}
|
|
2361
2361
|
|
|
2362
2362
|
model lms_users_permissions {
|
|
2363
|
-
id
|
|
2364
|
-
user_id
|
|
2365
|
-
sidebar_access
|
|
2366
|
-
profile_access
|
|
2363
|
+
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
|
|
2364
|
+
user_id Int @unique
|
|
2365
|
+
sidebar_access Json?
|
|
2366
|
+
profile_access Json?
|
|
2367
|
+
reports_sidebar Json?
|
|
2368
|
+
reports_access Json?
|
|
2367
2369
|
created_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2368
2370
|
updated_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2369
2371
|
lms_users lms_users @relation(fields: [user_id], references: [userID], onDelete: Cascade, onUpdate: NoAction, map: "lms_users_permissions_ibfk_1")
|