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 staff = sequelize.define( 'staff', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, name: { type: DataTypes.TEXT, }, salary: { type: DataTypes.DECIMAL, }, start_date: { type: DataTypes.DATE, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); staff.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.staff.belongsTo(db.partners, { as: 'partner', foreignKey: { name: 'partnerId', }, constraints: false, }); db.staff.belongsTo(db.partners, { as: 'partners', foreignKey: { name: 'partnersId', }, constraints: false, }); db.staff.belongsTo(db.users, { as: 'createdBy', }); db.staff.belongsTo(db.users, { as: 'updatedBy', }); }; return staff; };