@factor-wise/prisma-schema 2.0.107 → 2.0.108
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 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -719,7 +719,7 @@ model customer {
|
|
|
719
719
|
|
|
720
720
|
customerDevices customer_devices[]
|
|
721
721
|
|
|
722
|
-
notifications
|
|
722
|
+
notifications customer_notifications[]
|
|
723
723
|
|
|
724
724
|
@@index([mobile], map: "idx_customer_mobile")
|
|
725
725
|
@@index([email], map: "idx_customer_email")
|
|
@@ -3737,7 +3737,7 @@ model customer_devices {
|
|
|
3737
3737
|
@@index([deviceToken])
|
|
3738
3738
|
}
|
|
3739
3739
|
|
|
3740
|
-
model
|
|
3740
|
+
model customer_notifications {
|
|
3741
3741
|
id Int @id @default(autoincrement())
|
|
3742
3742
|
customerID Int
|
|
3743
3743
|
type String @db.VarChar(100)
|