@factor-wise/prisma-schema 2.0.40 → 2.0.41
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 +14 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2494,6 +2494,20 @@ model cibil_fetch_logs {
|
|
|
2494
2494
|
@@index([createdAt])
|
|
2495
2495
|
}
|
|
2496
2496
|
|
|
2497
|
+
model criff_test {
|
|
2498
|
+
id Int @id @default(autoincrement())
|
|
2499
|
+
leadID Int
|
|
2500
|
+
domain String @db.VarChar(50)
|
|
2501
|
+
criff Json
|
|
2502
|
+
|
|
2503
|
+
createdAt DateTime @default(now()) @db.Timestamp(0)
|
|
2504
|
+
updatedAt DateTime @updatedAt @db.Timestamp(0)
|
|
2505
|
+
|
|
2506
|
+
@@unique([leadID, domain])
|
|
2507
|
+
@@index([leadID])
|
|
2508
|
+
@@index([domain])
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2497
2511
|
|
|
2498
2512
|
enum usersgoogle_oauth_provider {
|
|
2499
2513
|
google
|