Skip to content

Commit 05db4be

Browse files
Revert "Update upgrading guide"
This reverts commit 7f8f2af.
1 parent 353ad4d commit 05db4be

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

UPGRADING.md

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ return new class extends Migration
2828
$table->boolean('locked')->default(false)->change();
2929

3030
$table->unique(['group', 'name']);
31+
32+
$table->dropIndex(['group']);
3133
});
3234
}
3335

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

4244
$table->dropUnique(['group', 'name']);
45+
46+
$table->index('group');
4347
});
4448
}
4549
};

0 commit comments

Comments
 (0)