mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 10:20:14 +01:00
Migration Test
This commit is contained in:
parent
ef99e6a6b1
commit
4600e4e237
1 changed files with 12 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue