@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factor-wise/prisma-schema",
3
- "version": "2.0.40",
3
+ "version": "2.0.41",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -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