@factor-wise/prisma-schema 2.0.51 → 2.0.53
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 +4 -4
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -673,7 +673,7 @@ model customer {
|
|
|
673
673
|
isBlocked Boolean @default(false)
|
|
674
674
|
utmSource String? @db.VarChar(256)
|
|
675
675
|
alternateMobile String? @db.VarChar(50)
|
|
676
|
-
current_address
|
|
676
|
+
current_address Json?
|
|
677
677
|
digioKid String?
|
|
678
678
|
digioToken String? @db.VarChar(100)
|
|
679
679
|
digioMobileNumber String?
|
|
@@ -681,7 +681,7 @@ model customer {
|
|
|
681
681
|
is_onboarded Boolean @default(false)
|
|
682
682
|
last_login DateTime @default(now()) @db.Timestamp(0)
|
|
683
683
|
loanApplied Boolean @default(false)
|
|
684
|
-
permanent_address
|
|
684
|
+
permanent_address Json?
|
|
685
685
|
presalesassign Int?
|
|
686
686
|
companyName String? @db.Text
|
|
687
687
|
step String? @db.VarChar(255)
|
|
@@ -1663,13 +1663,13 @@ model PayoutDowntime {
|
|
|
1663
1663
|
model icici_payout {
|
|
1664
1664
|
id Int @id @default(autoincrement())
|
|
1665
1665
|
amount BigInt
|
|
1666
|
-
transRefNo String
|
|
1666
|
+
transRefNo String?
|
|
1667
1667
|
bankRRN String?
|
|
1668
1668
|
status iciciPayoutStatus
|
|
1669
1669
|
actCode String?
|
|
1670
1670
|
checkStatus String?
|
|
1671
1671
|
responseMsg String?
|
|
1672
|
-
paymentRef String
|
|
1672
|
+
paymentRef String @unique
|
|
1673
1673
|
checkAttempts Int @default(0)
|
|
1674
1674
|
retryCount Int @default(0)
|
|
1675
1675
|
nextCheckAt DateTime?
|