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 email_notifications = sequelize.define( 'email_notifications', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, to_email: { type: DataTypes.TEXT, }, subject: { type: DataTypes.TEXT, }, template_key: { type: DataTypes.TEXT, }, payload: { type: DataTypes.TEXT, }, send_status: { type: DataTypes.ENUM, values: [ "queued", "sent", "failed" ], }, sent_at: { type: DataTypes.DATE, }, failure_reason: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); email_notifications.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.email_notifications.belongsTo(db.tenants, { as: 'tenant', foreignKey: { name: 'tenantId', }, constraints: false, }); db.email_notifications.belongsTo(db.users, { as: 'recipient_user', foreignKey: { name: 'recipient_userId', }, constraints: false, }); db.email_notifications.belongsTo(db.organizations, { as: 'organizations', foreignKey: { name: 'organizationsId', }, constraints: false, }); db.email_notifications.belongsTo(db.users, { as: 'createdBy', }); db.email_notifications.belongsTo(db.users, { as: 'updatedBy', }); }; return email_notifications; };