@factor-wise/prisma-schema 1.0.11 → 1.0.13

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.11",
3
+ "version": "1.0.13",
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",
@@ -650,6 +650,7 @@ model customer {
650
650
  updatedAt DateTime? @default(now()) @updatedAt @db.Timestamp(0)
651
651
  customerappId Int?
652
652
  isBlocked Boolean @default(false)
653
+ utmSource String? @db.VarChar(256)
653
654
  addresses address[]
654
655
  bankstatement bankstatement[]
655
656
  customerapp customerapp? @relation(fields: [customerappId], references: [customerID], map: "fk_customer_customerapp")
@@ -1093,11 +1094,11 @@ model leads {
1093
1094
  purpose String? @db.VarChar(255)
1094
1095
  loanRequeried Float @default(10000)
1095
1096
  tenure Int @default(5)
1096
- monthlyIncome Float
1097
+ monthlyIncome Float?
1097
1098
  salaryMode String? @db.VarChar(200)
1098
1099
  city String? @db.VarChar(255)
1099
1100
  state String?
1100
- pincode BigInt
1101
+ pincode BigInt?
1101
1102
  status leads_status
1102
1103
  utmSource String @default("Website") @db.VarChar(100)
1103
1104
  fbLeads String?