cleanup and working seed data

This commit is contained in:
Arjun Patel
2019-03-13 23:53:07 -07:00
parent acf6421251
commit 05a1003be2
10 changed files with 119 additions and 143 deletions
-3
View File
@@ -7,7 +7,6 @@ module.exports = models => {
Organization,
Charge,
PaymentPlan,
OrgBank,
GrantsOrganizations
} = models;
@@ -41,6 +40,4 @@ module.exports = models => {
Grant.hasOne(PaymentPlan, {
foreignKey: 'grant_id'
});
Organization.hasOne(OrgBank);
};