40191-vm/backend/src/db/models/project_fonts.js
2026-06-04 13:33:42 +00:00

116 lines
1.6 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 project_fonts = sequelize.define(
'project_fonts',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
variant: {
type: DataTypes.TEXT,
},
usage_notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
project_fonts.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.project_fonts.belongsTo(db.projects, {
as: 'project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
db.project_fonts.belongsTo(db.fonts, {
as: 'font',
foreignKey: {
name: 'fontId',
},
constraints: false,
});
db.project_fonts.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.project_fonts.belongsTo(db.users, {
as: 'createdBy',
});
db.project_fonts.belongsTo(db.users, {
as: 'updatedBy',
});
};
return project_fonts;
};