@factor-wise/prisma-schema 2.0.37 → 2.0.39
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 +3 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -650,6 +650,7 @@ model customer {
|
|
|
650
650
|
marrital String? @db.VarChar(10)
|
|
651
651
|
profile String? @db.VarChar(100)
|
|
652
652
|
otp String? @default("") @db.VarChar(20)
|
|
653
|
+
refreshToken String? @db.VarChar(100)
|
|
653
654
|
isVerified Boolean @default(dbgenerated("b'0'")) @db.Bit(1)
|
|
654
655
|
employeeType customer_employeeType?
|
|
655
656
|
createdDate DateTime @default(now()) @db.DateTime(0)
|
|
@@ -672,7 +673,9 @@ model customer {
|
|
|
672
673
|
alternateMobile String? @db.VarChar(50)
|
|
673
674
|
current_address String? @db.Text
|
|
674
675
|
digioKid String?
|
|
676
|
+
digioToken String? @db.VarChar(100)
|
|
675
677
|
digioMobileNumber String?
|
|
678
|
+
kyc_at DateTime? @default(now()) @db.Timestamp(0)
|
|
676
679
|
is_onboarded Boolean @default(false)
|
|
677
680
|
last_login DateTime @default(now()) @db.Timestamp(0)
|
|
678
681
|
loanApplied Boolean @default(false)
|