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 emr_records = sequelize.define( 'emr_records', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, visit_date: { type: DataTypes.DATE, }, notes: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); emr_records.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.emr_records.belongsTo(db.patients, { as: 'patient', foreignKey: { name: 'patientId', }, constraints: false, }); db.emr_records.belongsTo(db.users, { as: 'doctor', foreignKey: { name: 'doctorId', }, constraints: false, }); db.emr_records.belongsTo(db.organizations, { as: 'organizations', foreignKey: { name: 'organizationsId', }, constraints: false, }); db.emr_records.belongsTo(db.users, { as: 'createdBy', }); db.emr_records.belongsTo(db.users, { as: 'updatedBy', }); }; return emr_records; };