efiber-prisma-schema 2.0.15 → 2.1.0
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/dist/prisma/generated/edge.js +11 -4
- package/dist/prisma/generated/index-browser.js +2 -0
- package/dist/prisma/generated/index.d.ts +547 -1
- package/dist/prisma/generated/index.js +15 -4
- package/dist/prisma/generated/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/dist/prisma/generated/package.json +1 -1
- package/dist/prisma/generated/schema.prisma +3 -1
- package/dist/prisma/generated/wasm.js +11 -4
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
generator client {
|
|
2
2
|
provider = "prisma-client-js"
|
|
3
3
|
output = "../dist/prisma/generated"
|
|
4
|
-
binaryTargets = ["native", "debian-openssl-3.0.x"]
|
|
4
|
+
binaryTargets = ["native", "debian-openssl-3.0.x", "linux-musl-openssl-3.0.x"]
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
datasource db {
|
|
@@ -442,6 +442,8 @@ model User {
|
|
|
442
442
|
surname String
|
|
443
443
|
email String @unique
|
|
444
444
|
mobile String
|
|
445
|
+
alternativeMobile String?
|
|
446
|
+
whatsappMobile String?
|
|
445
447
|
password String
|
|
446
448
|
otp String?
|
|
447
449
|
passport String? //National Id/ Passport No.
|