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 statistics = sequelize.define( 'statistics', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, visitor_count: { type: DataTypes.INTEGER, }, contact_attempts: { type: DataTypes.INTEGER, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); statistics.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.statistics.belongsTo(db.users, { as: 'admin', foreignKey: { name: 'adminId', }, constraints: false, }); db.statistics.belongsTo(db.users, { as: 'createdBy', }); db.statistics.belongsTo(db.users, { as: 'updatedBy', }); }; return statistics; };