@factor-wise/prisma-schema 2.0.113 → 2.0.114
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 +0 -4
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1417,7 +1417,6 @@ model leads {
|
|
|
1417
1417
|
icici_payout icici_payout[]
|
|
1418
1418
|
face_comparison face_comparison[]
|
|
1419
1419
|
credforge_bre_log credforge_bre_log[]
|
|
1420
|
-
aiCallBatches ai_call_batches[]
|
|
1421
1420
|
aiCallLogs ai_call_logs[]
|
|
1422
1421
|
|
|
1423
1422
|
@@index([customerID], map: "idx_customerID")
|
|
@@ -3729,7 +3728,6 @@ model customer_notifications {
|
|
|
3729
3728
|
|
|
3730
3729
|
model ai_call_batches {
|
|
3731
3730
|
id Int @id @default(autoincrement())
|
|
3732
|
-
leadID Int
|
|
3733
3731
|
batchId String @unique
|
|
3734
3732
|
agent String?
|
|
3735
3733
|
status String
|
|
@@ -3739,8 +3737,6 @@ model ai_call_batches {
|
|
|
3739
3737
|
createdAt DateTime @default(now())
|
|
3740
3738
|
completedAt DateTime?
|
|
3741
3739
|
|
|
3742
|
-
lead leads @relation(fields: [leadID], references: [leadID])
|
|
3743
|
-
|
|
3744
3740
|
calls ai_call_logs[]
|
|
3745
3741
|
|
|
3746
3742
|
@@index([batchId])
|