Files
Ucharify_api/app/config/associate.js
T

27 lines
597 B
JavaScript

module.exports = models => {
const { Donors, Grants, Causes, Regions, Organizations } = models;
Donors.hasMany(Grants, { foreignKey: 'donor_id' });
Grants.belongsToMany(Causes, {
as: 'GrantsCauses',
through: 'grants_causes',
foreignKey: 'grant_id',
otherKey: 'cause_id'
});
Grants.belongsToMany(Regions, {
as: 'GrantsRegions',
through: 'grants_regions',
foreignKey: 'grant_id',
otherKey: 'region_id'
});
Grants.belongsToMany(Organizations, {
as: 'GrantsOrganizations',
through: 'grants_organizations',
foreignKey: 'grant_id',
otherKey: 'organization_id'
});
};