Execute Liquiloans Transaction Script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
1.0 KiB

module.exports = function (sequelize, DataTypes) {
const LiquiloansInvestorsTbl = sequelize.define('P2P_BI_Liquiloans_Investors', {
investor_id: { type: DataTypes.INTEGER, allowNull: false, unique: true },
name: { type: DataTypes.STRING, allowNull: true },
entity_type: { type: DataTypes.STRING, allowNull: true },
pan: { type: DataTypes.STRING, allowNull: true },
email: { type: DataTypes.STRING, allowNull: true },
contact_number: { type: DataTypes.STRING, allowNull: true },
ifa_id: { type: DataTypes.STRING, allowNull: true },
created_at: { type: DataTypes.STRING, allowNull: true },
rm_name: { type: DataTypes.STRING, allowNull: true },
client_code: { type: DataTypes.STRING, allowNull: true },
last_updatedAt: { type: DataTypes.STRING, allowNull: true },
}, {
//freezeTableName: true, // Model tableName will be the same as the model name
timestamps: false,
//underscored: true
}
);
return LiquiloansInvestorsTbl
};

Powered by TurnKey Linux.