ソースを参照

Rename migration to re run

Andrés Manelli 6 年 前
コミット
a347ae3676
1 ファイル変更1 行追加1 行削除
  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);