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 deals = sequelize.define( 'deals', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, title: { type: DataTypes.TEXT, }, amount: { type: DataTypes.DECIMAL, }, stage: { type: DataTypes.ENUM, values: [ 'lead', 'prospect', 'negotiation', 'closed_won', 'closed_lost', ], }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); deals.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.deals.belongsTo(db.contacts, { as: 'contact', foreignKey: { name: 'contactId', }, constraints: false, }); db.deals.belongsTo(db.users, { as: 'sales_representative', foreignKey: { name: 'sales_representativeId', }, constraints: false, }); db.deals.belongsTo(db.users, { as: 'createdBy', }); db.deals.belongsTo(db.users, { as: 'updatedBy', }); }; return deals; };