@factor-wise/prisma-schema 2.0.8 → 2.0.9
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 +12 -9
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -667,6 +667,7 @@ model customer {
|
|
|
667
667
|
permanent_address String? @db.Text
|
|
668
668
|
presalesassign Int?
|
|
669
669
|
companyName String? @db.Text
|
|
670
|
+
step String? @db.VarChar(255)
|
|
670
671
|
razorpay_contact_id String? @db.VarChar(100)
|
|
671
672
|
addresses address[]
|
|
672
673
|
bankstatement bankstatement[]
|
|
@@ -727,14 +728,14 @@ model customer_salary {
|
|
|
727
728
|
|
|
728
729
|
model customeraccount {
|
|
729
730
|
accountID Int @id @default(autoincrement())
|
|
730
|
-
leadID Int
|
|
731
|
+
leadID Int?
|
|
731
732
|
customerID Int?
|
|
732
733
|
accountNo String @db.VarChar(100)
|
|
733
734
|
accountType String @db.VarChar(100)
|
|
734
735
|
bankIfsc String @db.VarChar(100)
|
|
735
736
|
bank String
|
|
736
737
|
bankBranch String
|
|
737
|
-
ip String @db.VarChar(100)
|
|
738
|
+
ip String? @db.VarChar(100)
|
|
738
739
|
credatedBy Int
|
|
739
740
|
status customeraccount_status
|
|
740
741
|
createdDate DateTime @default(now()) @db.DateTime(0)
|
|
@@ -896,19 +897,21 @@ model emis {
|
|
|
896
897
|
model employer {
|
|
897
898
|
employerID Int @id @default(autoincrement())
|
|
898
899
|
customerID Int?
|
|
899
|
-
employerName String
|
|
900
|
+
employerName String?
|
|
900
901
|
empEmail String?
|
|
901
902
|
empDob String?
|
|
902
903
|
empSalary String?
|
|
904
|
+
employeeType customer_employeeType?
|
|
905
|
+
salaryMode String?
|
|
903
906
|
empDesignation String?
|
|
904
907
|
empWorkIndustry String?
|
|
905
908
|
employment String?
|
|
906
|
-
totalExperience String @default("0-6 Months")
|
|
907
|
-
currentCompany String @default("0-6 Months")
|
|
908
|
-
address String
|
|
909
|
-
city String
|
|
910
|
-
state String
|
|
911
|
-
pincode BigInt
|
|
909
|
+
totalExperience String? @default("0-6 Months")
|
|
910
|
+
currentCompany String? @default("0-6 Months")
|
|
911
|
+
address String?
|
|
912
|
+
city String?
|
|
913
|
+
state String?
|
|
914
|
+
pincode BigInt?
|
|
912
915
|
status employer_status @default(Not_Verified)
|
|
913
916
|
verifiedBy Int @default(1)
|
|
914
917
|
createdDate DateTime @db.DateTime(0)
|