@factor-wise/prisma-schema 2.0.37 → 2.0.38
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 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -672,7 +672,9 @@ model customer {
|
|
|
672
672
|
alternateMobile String? @db.VarChar(50)
|
|
673
673
|
current_address String? @db.Text
|
|
674
674
|
digioKid String?
|
|
675
|
+
digioToken String? @db.VarChar(100)
|
|
675
676
|
digioMobileNumber String?
|
|
677
|
+
kyc_at DateTime? @default(now()) @db.Timestamp(0)
|
|
676
678
|
is_onboarded Boolean @default(false)
|
|
677
679
|
last_login DateTime @default(now()) @db.Timestamp(0)
|
|
678
680
|
loanApplied Boolean @default(false)
|