@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factor-wise/prisma-schema",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -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