@factor-wise/prisma-schema 2.0.63 → 2.0.64
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 +12 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -701,6 +701,7 @@ model customer {
|
|
|
701
701
|
profileInfo profile_info[]
|
|
702
702
|
finb_logs finb_logs[]
|
|
703
703
|
face_comparison face_comparison[]
|
|
704
|
+
preoffer preoffer[]
|
|
704
705
|
|
|
705
706
|
|
|
706
707
|
@@index([firstName], map: "firstName")
|
|
@@ -985,6 +986,17 @@ model profile_info {
|
|
|
985
986
|
@@index([status])
|
|
986
987
|
}
|
|
987
988
|
|
|
989
|
+
model preoffer {
|
|
990
|
+
id Int @id @default(autoincrement())
|
|
991
|
+
customerID Int
|
|
992
|
+
response Json?
|
|
993
|
+
customer customer @relation(fields: [customerID], references: [customerID])
|
|
994
|
+
createdDate DateTime @default(now()) @db.DateTime(0)
|
|
995
|
+
updated_at DateTime @updatedAt
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
|
|
988
1000
|
model finb_logs {
|
|
989
1001
|
id Int @id @default(autoincrement())
|
|
990
1002
|
customerID Int
|