Allow Laravel to calculate index name

This commit is contained in:
Marcus Moore
2025-10-07 16:04:12 -07:00
parent 85f39de540
commit 218fe9ebdc

View File

@@ -22,7 +22,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('action_logs', function (Blueprint $table) {
$table->dropIndex('deleted_at');
$table->dropIndex(['deleted_at']);
});
}
};