128 lines
2.7 KiB
JavaScript
128 lines
2.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 projects = sequelize.define(
|
|
'projects',
|
|
{
|
|
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,
|
|
},
|
|
);
|
|
|
|
projects.associate = (db) => {
|
|
db.projects.belongsToMany(db.tasks, {
|
|
as: 'tasks',
|
|
foreignKey: {
|
|
name: 'projects_tasksId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsTasksTasks',
|
|
});
|
|
|
|
db.projects.belongsToMany(db.tasks, {
|
|
as: 'tasks_filter',
|
|
foreignKey: {
|
|
name: 'projects_tasksId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsTasksTasks',
|
|
});
|
|
|
|
db.projects.belongsToMany(db.materials, {
|
|
as: 'materials',
|
|
foreignKey: {
|
|
name: 'projects_materialsId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsMaterialsMaterials',
|
|
});
|
|
|
|
db.projects.belongsToMany(db.materials, {
|
|
as: 'materials_filter',
|
|
foreignKey: {
|
|
name: 'projects_materialsId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsMaterialsMaterials',
|
|
});
|
|
|
|
db.projects.belongsToMany(db.machinery, {
|
|
as: 'machinery',
|
|
foreignKey: {
|
|
name: 'projects_machineryId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsMachineryMachinery',
|
|
});
|
|
|
|
db.projects.belongsToMany(db.machinery, {
|
|
as: 'machinery_filter',
|
|
foreignKey: {
|
|
name: 'projects_machineryId',
|
|
},
|
|
constraints: false,
|
|
through: 'projectsMachineryMachinery',
|
|
});
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
db.projects.hasMany(db.machinery, {
|
|
as: 'machinery_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.materials, {
|
|
as: 'materials_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.tasks, {
|
|
as: 'tasks_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
//end loop
|
|
|
|
db.projects.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.projects.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
return projects;
|
|
};
|