Skip to content

Instantly share code, notes, and snippets.

@mrl22
Created December 16, 2024 10:18
Show Gist options
  • Save mrl22/dc2d30229075a7c643d7e129aef03ac2 to your computer and use it in GitHub Desktop.
Save mrl22/dc2d30229075a7c643d7e129aef03ac2 to your computer and use it in GitHub Desktop.
Laravel 9+ Rollback previous up() migration

How to rollback to previous created migrations. This works on Laravel 8.37 and above, since anonymous migration classes were introduced.

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::dropIfExists('order_items');
Schema::dropIfExists('orders');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
$files = [
'2024_05_20_162628_create_orders_table.php',
'2024_05_20_123139_create_order_items_table.php',
];
foreach ($files as $file) {
$migration = require $file;
if ($migration instanceof \Illuminate\Database\Migrations\Migration) {
$migration->up();
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment