const config = require('../../config'); const providers = config.providers; const crypto = require('crypto'); const bcrypt = require('bcrypt'); const moment = require('moment'); module.exports = function(sequelize, DataTypes) { const contact_messages = sequelize.define( 'contact_messages', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, sender_name: { type: DataTypes.TEXT, }, sender_email: { type: DataTypes.TEXT, }, sender_phone: { type: DataTypes.TEXT, }, subject: { type: DataTypes.ENUM, values: [ "loan_application_help", "loan_terms", "repayment", "collateral", "partnership", "other" ], }, message: { type: DataTypes.TEXT, }, status: { type: DataTypes.ENUM, values: [ "new", "in_progress", "resolved" ], }, received_at: { type: DataTypes.DATE, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); contact_messages.associate = (db) => { /// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity //end loop db.contact_messages.belongsTo(db.users, { as: 'assigned_staff', foreignKey: { name: 'assigned_staffId', }, constraints: false, }); db.contact_messages.belongsTo(db.users, { as: 'createdBy', }); db.contact_messages.belongsTo(db.users, { as: 'updatedBy', }); }; return contact_messages; };