@factor-wise/prisma-schema 2.0.114 → 2.0.115
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
|
@@ -709,7 +709,7 @@ model customer {
|
|
|
709
709
|
finb_logs finb_logs[]
|
|
710
710
|
face_comparison face_comparison[]
|
|
711
711
|
preoffer preoffer[]
|
|
712
|
-
customer_extended customer_extended
|
|
712
|
+
customer_extended customer_extended[]
|
|
713
713
|
criffsoftpull criffsoftpull[]
|
|
714
714
|
credforge_bre_log credforge_bre_log[]
|
|
715
715
|
sms customer_sms[]
|
|
@@ -758,7 +758,7 @@ model customer {
|
|
|
758
758
|
|
|
759
759
|
model customer_extended {
|
|
760
760
|
id Int @id @default(autoincrement())
|
|
761
|
-
customerID Int
|
|
761
|
+
customerID Int
|
|
762
762
|
isBtCase Boolean @default(false)
|
|
763
763
|
attempts Int? @default(0)
|
|
764
764
|
lastAttempt DateTime?
|