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 medication_reminders = sequelize.define( 'medication_reminders', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, next_dose: { type: DataTypes.DATE, }, reminder_type: { type: DataTypes.ENUM, values: ['email', 'SMS'], }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); medication_reminders.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.medication_reminders.belongsTo(db.treatment_plans, { as: 'treatment_plan', foreignKey: { name: 'treatment_planId', }, constraints: false, }); db.medication_reminders.belongsTo(db.rehabilitationfacility, { as: 'rehabilitationfacility', foreignKey: { name: 'rehabilitationfacilityId', }, constraints: false, }); db.medication_reminders.belongsTo(db.users, { as: 'createdBy', }); db.medication_reminders.belongsTo(db.users, { as: 'updatedBy', }); }; return medication_reminders; };