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 messages = sequelize.define( 'messages', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, sender_type: { type: DataTypes.ENUM, values: [ "user", "assistant", "system" ], }, content: { type: DataTypes.TEXT, }, sent_at: { type: DataTypes.DATE, }, is_pinned: { type: DataTypes.BOOLEAN, allowNull: false, defaultValue: false, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); messages.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.messages.belongsTo(db.conversations, { as: 'conversation', foreignKey: { name: 'conversationId', }, constraints: false, }); db.messages.belongsTo(db.users, { as: 'sender', foreignKey: { name: 'senderId', }, constraints: false, }); db.messages.hasMany(db.file, { as: 'attachments', foreignKey: 'belongsToId', constraints: false, scope: { belongsTo: db.messages.getTableName(), belongsToColumn: 'attachments', }, }); db.messages.belongsTo(db.users, { as: 'createdBy', }); db.messages.belongsTo(db.users, { as: 'updatedBy', }); }; return messages; };