@factor-wise/prisma-schema 2.0.6 → 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 +3 -0
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
|
|