32355/backend/src/db/models/organisation.js
2025-06-19 19:58:22 +00:00

82 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 organisation = sequelize.define(
'organisation',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
organisation.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.organisation.hasMany(db.users, {
as: 'users_organisation',
foreignKey: {
name: 'organisationId',
},
constraints: false,
});
db.organisation.hasMany(db.analyses, {
as: 'analyses_organisation',
foreignKey: {
name: 'organisationId',
},
constraints: false,
});
db.organisation.hasMany(db.problems, {
as: 'problems_organisation',
foreignKey: {
name: 'organisationId',
},
constraints: false,
});
db.organisation.hasMany(db.solutions, {
as: 'solutions_organisation',
foreignKey: {
name: 'organisationId',
},
constraints: false,
});
//end loop
db.organisation.belongsTo(db.users, {
as: 'createdBy',
});
db.organisation.belongsTo(db.users, {
as: 'updatedBy',
});
};
return organisation;
};