@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factor-wise/prisma-schema",
3
- "version": "2.0.107",
3
+ "version": "2.0.108",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -719,7 +719,7 @@ model customer {
719
719
 
720
720
  customerDevices customer_devices[]
721
721
 
722
- notifications notification[]
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 notification {
3740
+ model customer_notifications {
3741
3741
  id Int @id @default(autoincrement())
3742
3742
  customerID Int
3743
3743
  type String @db.VarChar(100)