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 applications = sequelize.define( 'applications', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, status: { type: DataTypes.ENUM, values: [ 'submitted', 'reviewed', 'interview_scheduled', 'rejected', 'hired', ], }, submitted_at: { type: DataTypes.DATE, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); applications.associate = (db) => { /// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity db.applications.hasMany(db.feedbacks, { as: 'feedbacks_application', foreignKey: { name: 'applicationId', }, constraints: false, }); //end loop db.applications.belongsTo(db.jobs, { as: 'job', foreignKey: { name: 'jobId', }, constraints: false, }); db.applications.belongsTo(db.resumes, { as: 'resume', foreignKey: { name: 'resumeId', }, constraints: false, }); db.applications.belongsTo(db.users, { as: 'user', foreignKey: { name: 'userId', }, constraints: false, }); db.applications.belongsTo(db.workspaces, { as: 'workspaces', foreignKey: { name: 'workspacesId', }, constraints: false, }); db.applications.belongsTo(db.users, { as: 'createdBy', }); db.applications.belongsTo(db.users, { as: 'updatedBy', }); }; return applications; };