@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 +1 -1
- package/prisma/schema.prisma +17 -16
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2255,22 +2255,23 @@ model emandate_charge {
|
|
|
2255
2255
|
}
|
|
2256
2256
|
|
|
2257
2257
|
model bankstatement {
|
|
2258
|
-
id
|
|
2259
|
-
customerID
|
|
2260
|
-
leadID
|
|
2261
|
-
tempLeadID
|
|
2262
|
-
pushData
|
|
2263
|
-
documentFile
|
|
2264
|
-
password
|
|
2265
|
-
status
|
|
2266
|
-
verifiedBy
|
|
2267
|
-
verifiedDate
|
|
2268
|
-
uploadBy
|
|
2269
|
-
uploadedDate
|
|
2270
|
-
analyser_data
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
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")
|