31154/backend/src/db/models/medical_records.js
2025-05-01 19:14:11 +00:00

80 lines
1.7 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 medical_records = sequelize.define(
'medical_records',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
record_type: {
type: DataTypes.TEXT,
},
date_recorded: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
medical_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.medical_records.belongsTo(db.patients, {
as: 'patient',
foreignKey: {
name: 'patientId',
},
constraints: false,
});
db.medical_records.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.medical_records.hasMany(db.file, {
as: 'documents',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.medical_records.getTableName(),
belongsToColumn: 'documents',
},
});
db.medical_records.belongsTo(db.users, {
as: 'createdBy',
});
db.medical_records.belongsTo(db.users, {
as: 'updatedBy',
});
};
return medical_records;
};