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 demographics = sequelize.define( 'demographics', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, name: { type: DataTypes.TEXT, }, category: { type: DataTypes.ENUM, values: ['income', 'racial_distribution', 'immigrant_status'], }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); demographics.associate = (db) => { db.demographics.belongsToMany(db.locations, { as: 'locations', foreignKey: { name: 'demographics_locationsId', }, constraints: false, through: 'demographicsLocationsLocations', }); db.demographics.belongsToMany(db.locations, { as: 'locations_filter', foreignKey: { name: 'demographics_locationsId', }, constraints: false, through: 'demographicsLocationsLocations', }); /// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity //end loop db.demographics.belongsTo(db.users, { as: 'createdBy', }); db.demographics.belongsTo(db.users, { as: 'updatedBy', }); }; return demographics; };