@factor-wise/prisma-schema 1.0.24 → 1.0.25

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": "1.0.24",
3
+ "version": "1.0.25",
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",
@@ -2255,22 +2255,23 @@ model emandate_charge {
2255
2255
  }
2256
2256
 
2257
2257
  model bankstatement {
2258
- id Int @id @default(autoincrement())
2259
- customerID Int
2260
- leadID Int?
2261
- tempLeadID Int
2262
- pushData Json?
2263
- documentFile String? @db.VarChar(255)
2264
- password String? @db.VarChar(255)
2265
- status Boolean? @default(false)
2266
- verifiedBy Int?
2267
- verifiedDate DateTime? @db.Date
2268
- uploadBy Int?
2269
- uploadedDate DateTime? @db.Date
2270
- analyser_data Json?
2271
- customer customer? @relation(fields: [customerID], references: [customerID], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_1")
2272
- leads leads? @relation(fields: [leadID], references: [leadID], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_3")
2273
- tempLead tempLead @relation(fields: [tempLeadID], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_4")
2258
+ id Int @id @default(autoincrement())
2259
+ customerID Int
2260
+ leadID Int?
2261
+ tempLeadID Int
2262
+ pushData Json?
2263
+ documentFile String? @db.VarChar(255)
2264
+ password String? @db.VarChar(255)
2265
+ status Boolean? @default(false)
2266
+ verifiedBy Int?
2267
+ verifiedDate DateTime? @db.Date
2268
+ uploadBy Int?
2269
+ uploadedDate DateTime? @db.Date
2270
+ analyser_data Json?
2271
+ user_requirement Json?
2272
+ customer customer? @relation(fields: [customerID], references: [customerID], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_1")
2273
+ leads leads? @relation(fields: [leadID], references: [leadID], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_3")
2274
+ tempLead tempLead @relation(fields: [tempLeadID], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "bankstatement_ibfk_4")
2274
2275
 
2275
2276
  @@index([customerID], map: "customerID")
2276
2277
  @@index([leadID], map: "leadID")