Explorar el Código

Rename migration to re run

Andrés Manelli hace 6 años
padre
commit
a347ae3676
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);