@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 +1 -1
- package/prisma/schema.prisma +30 -28
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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
|
|
1290
|
-
loanID
|
|
1291
|
-
leadID
|
|
1292
|
-
loanNo
|
|
1293
|
-
customerID
|
|
1294
|
-
disbursalAmount
|
|
1295
|
-
disbursalDate
|
|
1296
|
-
disbursalTime
|
|
1297
|
-
disbursalRefrenceNo
|
|
1298
|
-
accountNo
|
|
1299
|
-
accountType
|
|
1300
|
-
bankIfsc
|
|
1301
|
-
bank
|
|
1302
|
-
bankBranch
|
|
1303
|
-
chequeDetails
|
|
1304
|
-
pdDate
|
|
1305
|
-
pdDoneBy
|
|
1306
|
-
deduction
|
|
1307
|
-
remarks
|
|
1308
|
-
status
|
|
1309
|
-
rejReason
|
|
1310
|
-
companyAccountNo
|
|
1311
|
-
ip
|
|
1312
|
-
disbursedBy
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
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.
|