This commit is contained in:
sriramv 2022-05-04 13:09:04 +05:30
parent c197af3f94
commit 854bff90a6
2 changed files with 4 additions and 7 deletions

View File

@ -12,6 +12,7 @@ module.exports = (sequelize, DataTypes) => {
autoIncrement : true,
primaryKey: true
},
ref_no: { type: DataTypes.INTEGER },
losid: { type: DataTypes.STRING },
application_id: { type: DataTypes.STRING },
main_loan_applicant: { type: DataTypes.STRING },

View File

@ -7,13 +7,9 @@ module.exports = (sequelize, DataTypes) => {
Photograph.init(
{
pd_id: { type: DataTypes.INTEGER },
selfie_with_person_met: { type: DataTypes.STRING },
hospital_building: { type: DataTypes.STRING },
approach_to_pd_location: { type: DataTypes.STRING },
name_board_seen: { type: DataTypes.STRING },
stock_image: { type: DataTypes.STRING },
workplace_interior_image: { type: DataTypes.STRING },
institute_interior: { type: DataTypes.STRING },
ref_no: { type: DataTypes.INTEGER },
img: { type: DataTypes.STRING },
img_name: { type: DataTypes.STRING },
createdby: { type: DataTypes.INTEGER },
updatedby: { type: DataTypes.INTEGER }