31273/backend/src/db/models/integrations.js
2025-05-05 17:00:15 +00:00

84 lines
1.5 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 integrations = sequelize.define(
'integrations',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
type: {
type: DataTypes.ENUM,
values: [
'hubspot',
'salesforce',
'slack',
'stripe',
'sendgrid',
'calendly',
],
},
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.belongsTo(db.tenants, {
as: 'tenant',
foreignKey: {
name: 'tenantId',
},
constraints: false,
});
db.integrations.belongsTo(db.lasa, {
as: 'lasa',
foreignKey: {
name: 'lasaId',
},
constraints: false,
});
db.integrations.belongsTo(db.users, {
as: 'createdBy',
});
db.integrations.belongsTo(db.users, {
as: 'updatedBy',
});
};
return integrations;
};