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 inventories = sequelize.define( 'inventories', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, product_name: { type: DataTypes.TEXT, }, stock_quantity: { type: DataTypes.DECIMAL, }, status: { type: DataTypes.ENUM, values: ['available', 'reserved', 'returned'], }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); inventories.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.inventories.belongsTo(db.companies, { as: 'companies', foreignKey: { name: 'companiesId', }, constraints: false, }); db.inventories.belongsTo(db.users, { as: 'createdBy', }); db.inventories.belongsTo(db.users, { as: 'updatedBy', }); }; return inventories; };