@factor-wise/prisma-schema 2.0.28 → 2.0.29
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 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2332,6 +2332,7 @@ model lms_users {
|
|
|
2332
2332
|
password String @db.VarChar(255)
|
|
2333
2333
|
role String? @db.VarChar(50)
|
|
2334
2334
|
status String? @default("Active") @db.VarChar(20)
|
|
2335
|
+
session_id String? @db.VarChar(255)
|
|
2335
2336
|
created_by String? @db.VarChar(100)
|
|
2336
2337
|
created_at DateTime? @default(now()) @db.Timestamp(0)
|
|
2337
2338
|
updated_at DateTime? @default(now()) @db.Timestamp(0)
|