@factor-wise/prisma-schema 2.0.38 → 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 +1 -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)
|