Merge branch 'feature-custom-fields' of https://github.com/feuerball11/wekan into devel

This commit is contained in:
Lauri Ojansivu 2018-05-19 13:06:06 +03:00
commit 642507fb42

View file

@ -219,3 +219,15 @@ Migrations.add('add-profile-view', () => {
);
});
});
Migrations.add('add-custom-fields-to-cards', () => {
Cards.update({
customFields: {
$exists: false,
},
}, {
$set: {
customFields:[],
},
}, noValidateMulti);
});