Skip to content

Commit

Permalink
Update upgrading guide
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche committed May 11, 2023
1 parent 97b1043 commit 7f8f2af
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ return new class extends Migration
$table->boolean('locked')->default(false)->change();

$table->unique(['group', 'name']);

$table->dropIndex(['group']);
});
}

Expand All @@ -42,8 +40,6 @@ return new class extends Migration
$table->boolean('locked')->default(null)->change();

$table->dropUnique(['group', 'name']);

$table->index('group');
});
}
};
Expand Down

0 comments on commit 7f8f2af

Please sign in to comment.