Created
December 16, 2024 10:18
-
-
Save mrl22/dc2d30229075a7c643d7e129aef03ac2 to your computer and use it in GitHub Desktop.
Laravel 9+ Rollback previous up() migration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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