2026-02-17 11:45:45 +00:00

126 lines
1.7 KiB
JavaScript

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 brands = sequelize.define(
'brands',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
slug: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
is_active: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
brands.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.brands.hasMany(db.products, {
as: 'products_brand',
foreignKey: {
name: 'brandId',
},
constraints: false,
});
//end loop
db.brands.hasMany(db.file, {
as: 'logo_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.brands.getTableName(),
belongsToColumn: 'logo_images',
},
});
db.brands.belongsTo(db.users, {
as: 'createdBy',
});
db.brands.belongsTo(db.users, {
as: 'updatedBy',
});
};
return brands;
};