194 lines
4.1 KiB
JavaScript
194 lines
4.1 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 organizations = sequelize.define(
|
|
'organizations',
|
|
{
|
|
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,
|
|
},
|
|
);
|
|
|
|
organizations.associate = (db) => {
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
db.organizations.hasMany(db.users, {
|
|
as: 'users_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.audit_logs, {
|
|
as: 'audit_logs_org',
|
|
foreignKey: {
|
|
name: 'orgId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.audit_logs, {
|
|
as: 'audit_logs_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.audit_packs, {
|
|
as: 'audit_packs_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.contexts, {
|
|
as: 'contexts_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.evidence_files, {
|
|
as: 'evidence_files_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.jobs, {
|
|
as: 'jobs_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.mappings, {
|
|
as: 'mappings_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.metric_values, {
|
|
as: 'metric_values_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.narratives, {
|
|
as: 'narratives_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.org_users, {
|
|
as: 'org_users_org',
|
|
foreignKey: {
|
|
name: 'orgId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.org_users, {
|
|
as: 'org_users_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.projects, {
|
|
as: 'projects_org',
|
|
foreignKey: {
|
|
name: 'orgId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.projects, {
|
|
as: 'projects_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.taxonomies, {
|
|
as: 'taxonomies_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.units, {
|
|
as: 'units_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.validation_runs, {
|
|
as: 'validation_runs_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.organizations.hasMany(db.xbrl_instances, {
|
|
as: 'xbrl_instances_organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
//end loop
|
|
|
|
db.organizations.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.organizations.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
return organizations;
|
|
};
|