@factor-wise/prisma-schema 2.0.75 → 2.0.76
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 +16 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1293,6 +1293,7 @@ model leads {
|
|
|
1293
1293
|
criffsoftpull criffsoftpull?
|
|
1294
1294
|
icici_payout icici_payout[]
|
|
1295
1295
|
face_comparison face_comparison[]
|
|
1296
|
+
credforge_bre_log credforge_bre_log?
|
|
1296
1297
|
|
|
1297
1298
|
@@index([customerID], map: "leadcustomerID")
|
|
1298
1299
|
}
|
|
@@ -2719,6 +2720,21 @@ model criff_test {
|
|
|
2719
2720
|
@@index([domain])
|
|
2720
2721
|
}
|
|
2721
2722
|
|
|
2723
|
+
model credforge_bre_log {
|
|
2724
|
+
id Int @id @default(autoincrement())
|
|
2725
|
+
leadID Int @unique
|
|
2726
|
+
workflowName String
|
|
2727
|
+
requestPayload Json
|
|
2728
|
+
responsePayload Json?
|
|
2729
|
+
loanAmount Float?
|
|
2730
|
+
status String?
|
|
2731
|
+
createdAt DateTime @default(now())
|
|
2732
|
+
leads leads @relation(fields: [leadID], references: [leadID])
|
|
2733
|
+
|
|
2734
|
+
@@index([leadID])
|
|
2735
|
+
@@index([status])
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2722
2738
|
|
|
2723
2739
|
enum usersgoogle_oauth_provider {
|
|
2724
2740
|
google
|