@factor-wise/prisma-schema 1.0.11 → 1.0.12
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 +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1093,11 +1093,11 @@ model leads {
|
|
|
1093
1093
|
purpose String? @db.VarChar(255)
|
|
1094
1094
|
loanRequeried Float @default(10000)
|
|
1095
1095
|
tenure Int @default(5)
|
|
1096
|
-
monthlyIncome Float
|
|
1096
|
+
monthlyIncome Float?
|
|
1097
1097
|
salaryMode String? @db.VarChar(200)
|
|
1098
1098
|
city String? @db.VarChar(255)
|
|
1099
1099
|
state String?
|
|
1100
|
-
pincode BigInt
|
|
1100
|
+
pincode BigInt?
|
|
1101
1101
|
status leads_status
|
|
1102
1102
|
utmSource String @default("Website") @db.VarChar(100)
|
|
1103
1103
|
fbLeads String?
|