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 students = sequelize.define( 'students', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, roll_number: { type: DataTypes.TEXT, }, name: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); students.associate = (db) => { db.students.belongsToMany(db.seating_plans, { as: 'seating_plans', foreignKey: { name: 'students_seating_plansId', }, constraints: false, through: 'studentsSeating_plansSeating_plans', }); db.students.belongsToMany(db.seating_plans, { as: 'seating_plans_filter', foreignKey: { name: 'students_seating_plansId', }, constraints: false, through: 'studentsSeating_plansSeating_plans', }); /// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity db.students.hasMany(db.seating_plans, { as: 'seating_plans_student', foreignKey: { name: 'studentId', }, constraints: false, }); //end loop db.students.belongsTo(db.users, { as: 'createdBy', }); db.students.belongsTo(db.users, { as: 'updatedBy', }); }; return students; };