Skip to content

Commit 0f11112

Browse files
authored
Merge pull request #18005 from marcusmoore/fixes/drop-index-migration
Fixed exception when rolling back migrations
2 parents 0f49456 + 218fe9e commit 0f11112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up(): void
2222
public function down(): void
2323
{
2424
Schema::table('action_logs', function (Blueprint $table) {
25-
$table->dropIndex('deleted_at');
25+
$table->dropIndex(['deleted_at']);
2626
});
2727
}
2828
};

0 commit comments

Comments
 (0)