@factor-wise/prisma-schema 2.0.31 → 2.0.32
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 +18 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2450,6 +2450,24 @@ model AIAgentCallLog {
|
|
|
2450
2450
|
@@index([customerID])
|
|
2451
2451
|
}
|
|
2452
2452
|
|
|
2453
|
+
model cibil_fetch_logs {
|
|
2454
|
+
id Int @id @default(autoincrement())
|
|
2455
|
+
leadID Int
|
|
2456
|
+
pan String
|
|
2457
|
+
bureau String
|
|
2458
|
+
request_payload Json?
|
|
2459
|
+
status String @default("PENDING")
|
|
2460
|
+
error_message String?
|
|
2461
|
+
createdAt DateTime @default(now())
|
|
2462
|
+
updatedAt DateTime @default(now())
|
|
2463
|
+
|
|
2464
|
+
|
|
2465
|
+
@@index([leadID])
|
|
2466
|
+
@@index([bureau])
|
|
2467
|
+
@@index([status])
|
|
2468
|
+
@@index([createdAt])
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2453
2471
|
|
|
2454
2472
|
enum usersgoogle_oauth_provider {
|
|
2455
2473
|
google
|