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 reports = sequelize.define( 'reports', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, title: { type: DataTypes.TEXT, }, report_type: { type: DataTypes.ENUM, values: [ "cross_interview_summary", "themes_and_trends", "gaps_and_priorities", "delivery_preferences", "time_constraints", "channel_preferences" ], }, period_start: { type: DataTypes.DATE, }, period_end: { type: DataTypes.DATE, }, status: { type: DataTypes.ENUM, values: [ "draft", "generated", "archived" ], }, filters_json: { type: DataTypes.TEXT, }, content: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); reports.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.reports.belongsTo(db.organizations, { as: 'organization', foreignKey: { name: 'organizationId', }, constraints: false, }); db.reports.belongsTo(db.users, { as: 'requested_by', foreignKey: { name: 'requested_byId', }, constraints: false, }); db.reports.belongsTo(db.users, { as: 'createdBy', }); db.reports.belongsTo(db.users, { as: 'updatedBy', }); }; return reports; };