Migration Test

This commit is contained in:
IgnatzHome 2018-05-19 08:58:30 +02:00
parent ef99e6a6b1
commit 4600e4e237

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);
});