Added more industries

This commit is contained in:
vjrj 2018-02-27 16:50:26 +01:00
parent dc92574bc3
commit a3bdcb3982
4 changed files with 63 additions and 0 deletions

View file

@ -145,6 +145,19 @@ Meteor.startup(() => {
}
});
Migrations.add({
version: 10,
up: function siteSettingsAddIndex() {
IndustryRegistries.insert({
_id: '3', name: 'NPRI', agency: 'GCODP', region: 'Canada'
});
IndustryRegistries.insert({
_id: '4', name: 'NPI', agency: 'DEE', region: 'Australia'
});
}
});
// Set createdAt in users & subs
Migrations.migrateTo('latest');