39378-vm/backend/src/db/models/comments.js
2026-03-30 01:52:20 +00:00

110 lines
1.5 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 comments = sequelize.define(
'comments',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
body: {
type: DataTypes.TEXT,
},
posted_at: {
type: DataTypes.DATE,
},
is_edited: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
comments.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.comments.belongsTo(db.tasks, {
as: 'task',
foreignKey: {
name: 'taskId',
},
constraints: false,
});
db.comments.belongsTo(db.users, {
as: 'author',
foreignKey: {
name: 'authorId',
},
constraints: false,
});
db.comments.belongsTo(db.users, {
as: 'createdBy',
});
db.comments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return comments;
};