@factor-wise/prisma-schema 1.0.5 → 1.0.6
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 +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2159,7 +2159,7 @@ model lms_users {
|
|
|
2159
2159
|
|
|
2160
2160
|
model lms_users_permissions {
|
|
2161
2161
|
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
|
|
2162
|
-
user_id BigInt @db.UnsignedBigInt
|
|
2162
|
+
user_id BigInt @unique @db.UnsignedBigInt
|
|
2163
2163
|
sidebar_access Json?
|
|
2164
2164
|
profile_access Json?
|
|
2165
2165
|
created_at DateTime? @default(now()) @db.Timestamp(0)
|