214 lines
2.8 KiB
JavaScript
214 lines
2.8 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 contacts = sequelize.define(
|
|
'contacts',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
full_name: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
email: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
phone: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
job_title: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
lifecycle_stage: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"lead",
|
|
|
|
|
|
"prospect",
|
|
|
|
|
|
"customer",
|
|
|
|
|
|
"former_customer",
|
|
|
|
|
|
"partner"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
do_not_contact: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
linkedin_url: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
notes: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
last_contacted_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
contacts.associate = (db) => {
|
|
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
db.contacts.hasMany(db.leads, {
|
|
as: 'leads_primary_contact',
|
|
foreignKey: {
|
|
name: 'primary_contactId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.contacts.hasMany(db.deals, {
|
|
as: 'deals_primary_contact',
|
|
foreignKey: {
|
|
name: 'primary_contactId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
db.contacts.hasMany(db.activities, {
|
|
as: 'activities_contact',
|
|
foreignKey: {
|
|
name: 'contactId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
db.contacts.hasMany(db.notes, {
|
|
as: 'notes_contact',
|
|
foreignKey: {
|
|
name: 'contactId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
db.contacts.hasMany(db.tasks, {
|
|
as: 'tasks_contact',
|
|
foreignKey: {
|
|
name: 'contactId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
//end loop
|
|
|
|
|
|
|
|
db.contacts.belongsTo(db.accounts, {
|
|
as: 'account',
|
|
foreignKey: {
|
|
name: 'accountId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.contacts.belongsTo(db.users, {
|
|
as: 'owner',
|
|
foreignKey: {
|
|
name: 'ownerId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.contacts.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.contacts.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return contacts;
|
|
};
|
|
|
|
|