@factor-wise/prisma-schema 2.0.42 → 2.0.43
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
|
@@ -650,6 +650,8 @@ 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
|
+
emailOtp String? @db.VarChar(10)
|
|
654
|
+
emailVerify Boolean? @default(false)
|
|
653
655
|
refreshToken String? @db.VarChar(100)
|
|
654
656
|
isVerified Boolean @default(dbgenerated("b'0'")) @db.Bit(1)
|
|
655
657
|
employeeType customer_employeeType?
|