@factor-wise/prisma-schema 2.0.5 → 2.0.7
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 +4 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1100,10 +1100,13 @@ model eagreement {
|
|
|
1100
1100
|
document_id String @db.VarChar(100)
|
|
1101
1101
|
status String @db.VarChar(100)
|
|
1102
1102
|
file_name String @db.VarChar(100)
|
|
1103
|
+
access_token String? @db.VarChar(100)
|
|
1103
1104
|
isSigned Boolean @default(false)
|
|
1104
1105
|
signedAt DateTime?
|
|
1106
|
+
updated_at DateTime? @default(now())
|
|
1105
1107
|
createdAt DateTime @default(now())
|
|
1106
1108
|
|
|
1109
|
+
|
|
1107
1110
|
@@index([loanNo])
|
|
1108
1111
|
}
|
|
1109
1112
|
|
|
@@ -1748,7 +1751,7 @@ model reference {
|
|
|
1748
1751
|
createdDate DateTime? @default(now()) @db.DateTime(0)
|
|
1749
1752
|
name_contact String? @db.Text
|
|
1750
1753
|
reference_verify Int @default(0)
|
|
1751
|
-
is_verified
|
|
1754
|
+
is_verified Boolean @default(dbgenerated("b'0'")) @db.Bit(1)
|
|
1752
1755
|
recording String? @db.Text
|
|
1753
1756
|
createdByUser lms_users @relation(fields: [createdBy], references: [userID])
|
|
1754
1757
|
customer customer @relation(fields: [customerID], references: [customerID])
|