@factor-wise/prisma-schema 2.0.76 → 2.0.77
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 +6 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1272,6 +1272,7 @@ model leads {
|
|
|
1272
1272
|
bureau_consent Int @default(0)
|
|
1273
1273
|
emandatebypass Boolean? @default(false)
|
|
1274
1274
|
videoKycBypass Boolean? @default(false)
|
|
1275
|
+
loanType lead_loan_type @default(Payday)
|
|
1275
1276
|
approvals approval[]
|
|
1276
1277
|
bankstatement bankstatement[]
|
|
1277
1278
|
callHistories callhistory[]
|
|
@@ -2890,6 +2891,11 @@ enum leads_status {
|
|
|
2890
2891
|
Bank_Update_Hold @map("Bank Update Hold")
|
|
2891
2892
|
}
|
|
2892
2893
|
|
|
2894
|
+
enum lead_loan_type {
|
|
2895
|
+
Payday
|
|
2896
|
+
improve_credit @map("Improve Credit")
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2893
2899
|
enum leads2_status {
|
|
2894
2900
|
Fresh_Lead @map("Fresh Lead")
|
|
2895
2901
|
Callback
|