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 recommendations = sequelize.define( 'recommendations', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, match_score: { type: DataTypes.DECIMAL, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); recommendations.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.recommendations.belongsTo(db.students, { as: 'student', foreignKey: { name: 'studentId', }, constraints: false, }); db.recommendations.belongsTo(db.internships, { as: 'internship', foreignKey: { name: 'internshipId', }, constraints: false, }); db.recommendations.belongsTo(db.organizations, { as: 'organizations', foreignKey: { name: 'organizationsId', }, constraints: false, }); db.recommendations.belongsTo(db.users, { as: 'createdBy', }); db.recommendations.belongsTo(db.users, { as: 'updatedBy', }); }; return recommendations; };