Migration Test

reviewable/pr1644/r1
IgnatzHome 7 years ago
parent ef99e6a6b1
commit 4600e4e237
  1. 12
      server/migrations.js

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

Loading…
Cancel
Save