@factor-wise/prisma-schema 2.0.119 → 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 +6 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -679,6 +679,8 @@ model customer {
|
|
|
679
679
|
customerappId Int?
|
|
680
680
|
isBlocked Boolean @default(false)
|
|
681
681
|
utmSource String? @db.VarChar(256)
|
|
682
|
+
utmMedium String? @db.VarChar(256)
|
|
683
|
+
utmCampaign String? @db.VarChar(256)
|
|
682
684
|
alternateMobile String? @db.VarChar(50)
|
|
683
685
|
current_address Json?
|
|
684
686
|
digioKid String?
|
|
@@ -2763,6 +2765,7 @@ model lms_users {
|
|
|
2763
2765
|
sanctionedLeads leads[] @relation("SanctionAssignedUser")
|
|
2764
2766
|
collectionAssignedLeads leads[] @relation("CollectionAssignedUser")
|
|
2765
2767
|
paymentDatesCreated payment_block_dates[] @relation("UserCreatedPaymentDates")
|
|
2768
|
+
paymentDatesUpdated payment_block_dates[] @relation("UserUpdatedPaymentDates")
|
|
2766
2769
|
}
|
|
2767
2770
|
|
|
2768
2771
|
model lms_users_permissions {
|
|
@@ -3688,8 +3691,10 @@ model payment_block_dates {
|
|
|
3688
3691
|
isActive Boolean @default(true)
|
|
3689
3692
|
|
|
3690
3693
|
createdById Int?
|
|
3694
|
+
updatedById Int?
|
|
3691
3695
|
|
|
3692
3696
|
createdBy lms_users? @relation("UserCreatedPaymentDates", fields: [createdById], references: [userID])
|
|
3697
|
+
updatedBy lms_users? @relation("UserUpdatedPaymentDates", fields: [updatedById], references: [userID])
|
|
3693
3698
|
|
|
3694
3699
|
createdAt DateTime @default(now())
|
|
3695
3700
|
updatedAt DateTime @updatedAt
|
|
@@ -3803,6 +3808,7 @@ enum LocationType {
|
|
|
3803
3808
|
leadCreation
|
|
3804
3809
|
leadRejection
|
|
3805
3810
|
selfie
|
|
3811
|
+
eSign
|
|
3806
3812
|
}
|
|
3807
3813
|
|
|
3808
3814
|
enum NotificationStatus {
|