@factor-wise/prisma-schema 2.0.64 → 2.0.65

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.64",
3
+ "version": "2.0.65",
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",
@@ -702,6 +702,7 @@ model customer {
702
702
  finb_logs finb_logs[]
703
703
  face_comparison face_comparison[]
704
704
  preoffer preoffer[]
705
+ customer_extended customer_extended?
705
706
 
706
707
 
707
708
  @@index([firstName], map: "firstName")
@@ -711,6 +712,14 @@ model customer {
711
712
  @@index([customerappId], map: "fk_customer_customerapp")
712
713
  }
713
714
 
715
+ model customer_extended {
716
+ id Int @id @default(autoincrement())
717
+ customerID Int @unique
718
+ isBtCase Boolean @default(false)
719
+ customer customer @relation(fields: [customerID], references: [customerID])
720
+
721
+ }
722
+
714
723
  model customer_credit_remarks {
715
724
  id Int @id @default(autoincrement())
716
725
  customerId Int