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 integrations = sequelize.define( 'integrations', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, name: { type: DataTypes.TEXT, }, category: { type: DataTypes.ENUM, values: [ "dms", "case_management", "billing", "identity", "ai_provider", "collaboration", "automation", "gRC", "e_signature", "bi_analytics", "other" ], }, integration_status: { type: DataTypes.ENUM, values: [ "available", "configured", "disabled" ], }, is_enabled: { type: DataTypes.BOOLEAN, allowNull: false, defaultValue: false, }, configuration_notes: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); integrations.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.integrations.hasMany(db.file, { as: 'configuration_files', foreignKey: 'belongsToId', constraints: false, scope: { belongsTo: db.integrations.getTableName(), belongsToColumn: 'configuration_files', }, }); db.integrations.belongsTo(db.users, { as: 'createdBy', }); db.integrations.belongsTo(db.users, { as: 'updatedBy', }); }; return integrations; };