@factor-wise/prisma-schema 1.0.28 → 1.0.29

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": "1.0.28",
3
+ "version": "1.0.29",
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",
@@ -963,6 +963,7 @@ model cibildata_archive {
963
963
  @@index([leadID], map: "leadID")
964
964
  }
965
965
 
966
+
966
967
  model finbox_aa_dow_st {
967
968
  id Int @id
968
969
  customerID Int
@@ -1286,34 +1287,35 @@ model legal_notices {
1286
1287
 
1287
1288
  /// The underlying table does not contain a valid unique identifier and can therefore currently not be handled by Prisma Client.
1288
1289
  model loan {
1289
- id Int @id @default(autoincrement())
1290
- loanID Int
1291
- leadID Int @unique
1292
- loanNo String
1293
- customerID Int?
1294
- disbursalAmount Float
1295
- disbursalDate String? @db.Text
1296
- disbursalTime DateTime @default(dbgenerated("'00:00:00'")) @db.Time(0)
1297
- disbursalRefrenceNo String?
1298
- accountNo String @db.VarChar(100)
1299
- accountType String @db.VarChar(100)
1300
- bankIfsc String @db.VarChar(100)
1301
- bank String
1302
- bankBranch String
1303
- chequeDetails String
1304
- pdDate DateTime @db.Date
1305
- pdDoneBy String @db.VarChar(100)
1306
- deduction Float @default(0)
1307
- remarks String
1308
- status loan_status
1309
- rejReason String? @db.VarChar(256)
1310
- companyAccountNo String @default("")
1311
- ip String @db.VarChar(100)
1312
- disbursedBy Int?
1313
- createdDate DateTime @default(now()) @db.DateTime(0)
1314
- allocate_date DateTime? @default(now()) @db.DateTime(0)
1315
- allocated_by String? @db.VarChar(64)
1316
- lead leads @relation(fields: [leadID], references: [leadID])
1290
+ id Int @id @default(autoincrement())
1291
+ loanID Int
1292
+ leadID Int @unique
1293
+ loanNo String
1294
+ customerID Int?
1295
+ disbursalAmount Float
1296
+ disbursalDate String? @db.Text
1297
+ disbursalTime DateTime @default(dbgenerated("'00:00:00'")) @db.Time(0)
1298
+ disbursalRefrenceNo String?
1299
+ accountNo String @db.VarChar(100)
1300
+ accountType String @db.VarChar(100)
1301
+ bankIfsc String @db.VarChar(100)
1302
+ bank String
1303
+ bankBranch String
1304
+ chequeDetails String
1305
+ pdDate DateTime @db.Date
1306
+ pdDoneBy String @db.VarChar(100)
1307
+ deduction Float @default(0)
1308
+ remarks String
1309
+ status loan_status
1310
+ rejReason String? @db.VarChar(256)
1311
+ companyAccountNo String @default("")
1312
+ ip String @db.VarChar(100)
1313
+ disbursedBy Int?
1314
+ acutalDisbursalAmount Int?
1315
+ createdDate DateTime @default(now()) @db.DateTime(0)
1316
+ allocate_date DateTime? @default(now()) @db.DateTime(0)
1317
+ allocated_by String? @db.VarChar(64)
1318
+ lead leads @relation(fields: [leadID], references: [leadID])
1317
1319
  }
1318
1320
 
1319
1321
  /// The underlying table does not contain a valid unique identifier and can therefore currently not be handled by Prisma Client.