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, }, description: { type: DataTypes.TEXT, }, visibility: { type: DataTypes.ENUM, values: [ "private", "workspace", "public" ], }, status: { type: DataTypes.ENUM, values: [ "active", "archived" ], }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); projects.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.projects.belongsTo(db.workspaces, { as: 'workspace', foreignKey: { name: 'workspaceId', }, constraints: false, }); db.projects.belongsTo(db.users, { as: 'lead', foreignKey: { name: 'leadId', }, constraints: false, }); db.projects.belongsTo(db.users, { as: 'createdBy', }); db.projects.belongsTo(db.users, { as: 'updatedBy', }); }; return projects; };