@factor-wise/prisma-schema 2.0.120 → 2.0.121
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 +4 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2765,6 +2765,7 @@ model lms_users {
|
|
|
2765
2765
|
sanctionedLeads leads[] @relation("SanctionAssignedUser")
|
|
2766
2766
|
collectionAssignedLeads leads[] @relation("CollectionAssignedUser")
|
|
2767
2767
|
paymentDatesCreated payment_block_dates[] @relation("UserCreatedPaymentDates")
|
|
2768
|
+
paymentDatesUpdated payment_block_dates[] @relation("UserUpdatedPaymentDates")
|
|
2768
2769
|
}
|
|
2769
2770
|
|
|
2770
2771
|
model lms_users_permissions {
|
|
@@ -3690,8 +3691,10 @@ model payment_block_dates {
|
|
|
3690
3691
|
isActive Boolean @default(true)
|
|
3691
3692
|
|
|
3692
3693
|
createdById Int?
|
|
3694
|
+
updatedById Int?
|
|
3693
3695
|
|
|
3694
3696
|
createdBy lms_users? @relation("UserCreatedPaymentDates", fields: [createdById], references: [userID])
|
|
3697
|
+
updatedBy lms_users? @relation("UserUpdatedPaymentDates", fields: [updatedById], references: [userID])
|
|
3695
3698
|
|
|
3696
3699
|
createdAt DateTime @default(now())
|
|
3697
3700
|
updatedAt DateTime @updatedAt
|
|
@@ -3805,6 +3808,7 @@ enum LocationType {
|
|
|
3805
3808
|
leadCreation
|
|
3806
3809
|
leadRejection
|
|
3807
3810
|
selfie
|
|
3811
|
+
eSign
|
|
3808
3812
|
}
|
|
3809
3813
|
|
|
3810
3814
|
enum NotificationStatus {
|