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 stock_alerts = sequelize.define( 'stock_alerts', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, current_stock: { type: DataTypes.INTEGER, }, critical_level: { type: DataTypes.INTEGER, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); stock_alerts.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.stock_alerts.belongsTo(db.branches, { as: 'branch', foreignKey: { name: 'branchId', }, constraints: false, }); db.stock_alerts.belongsTo(db.products, { as: 'product', foreignKey: { name: 'productId', }, constraints: false, }); db.stock_alerts.belongsTo(db.users, { as: 'createdBy', }); db.stock_alerts.belongsTo(db.users, { as: 'updatedBy', }); }; return stock_alerts; };