Migrations, set "Show Lists" on card details on every board

This commit is contained in:
Martin Filser 2022-02-03 08:46:25 +01:00
parent a2e6f01469
commit bb5b723520

View file

@ -1103,3 +1103,19 @@ Migrations.add('assign-boardwise-card-numbers', () => {
});
})
});
Migrations.add('add-card-details-show-lists', () => {
Boards.update(
{
allowsShowLists: {
$exists: false,
},
},
{
$set: {
allowsShowLists: true,
},
},
noValidateMulti,
);
});