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 product_details = sequelize.define( 'product_details', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, price: { type: DataTypes.DECIMAL, }, price_unit: { type: DataTypes.ENUM, values: ['perkg', 'perlitru', 'perbucata', 'altaunitate'], }, stock_availability: { type: DataTypes.BOOLEAN, allowNull: false, defaultValue: false, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); product_details.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.product_details.belongsTo(db.products, { as: 'post', foreignKey: { name: 'postId', }, constraints: false, }); db.product_details.belongsTo(db.users, { as: 'createdBy', }); db.product_details.belongsTo(db.users, { as: 'updatedBy', }); }; return product_details; };