Browse Source

Rename migration to re run

Andrés Manelli 6 years ago
parent
commit
a347ae3676
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/migrations.js

+ 1 - 1
server/migrations.js

@@ -518,7 +518,7 @@ Migrations.add('add-templates', () => {
   });
 });
 
-Migrations.add('fix-circular-reference', () => {
+Migrations.add('fix-circular-reference_', () => {
   Cards.find().forEach((card) => {
     if (card.parentId === card._id) {
       Cards.update(card._id, {$set: {parentId: ''}}, noValidateMulti);