Laravel Tutorials

Implement Conditional Migrations in Laravel with the New shouldRun() Method

Published
Implement Conditional Migrations in Laravel with the New shouldRun() Method image

Laravel solves the challenge of managing migrations with feature flags through the new shouldRun() method. This elegant addition allows migrations to execute conditionally based on application state, simplifying phased rollouts and feature management.

When implementing feature flags or staged deployments, certain database changes should only apply when specific features are active. Previously, developers relied on complex workarounds or manual migration tracking. The shouldRun() method provides a clean solution by allowing migrations to determine their own execution criteria:

return new class extends Migration
{
public function shouldRun()
{
return Feature::active(Bookings::class);
}
 
public function up()
{
Schema::create('bookings', function (Blueprint $table) {
$table->id();
$table->string('location');
$table->timestamps();
});
}
 
public function down()
{
Schema::dropIfExists('bookings');
}
}

This migration executes only when the 'Bookings' feature is active. When inactive, the migration gets skipped without errors, and no entry appears in the migrations table.

The method proves particularly valuable for multi-tenant applications or gradual feature rollouts:

// 2023_06_22_create_notification_tables.php
return new class extends Migration
{
public function shouldRun()
{
// Only run this migration for environments or tenants
// with the notification system enabled
return config('features.advanced_notifications') === true;
}
 
public function up()
{
Schema::create('notification_templates', function (Blueprint $table) {
$table->id();
$table->string('channel');
$table->json('content');
$table->timestamps();
});
 
Schema::create('notification_delivery', function (Blueprint $table) {
$table->id();
$table->string('recipient');
$table->json('metadata');
$table->timestamps();
});
}
 
public function down()
{
Schema::dropIfExists('notification_delivery');
Schema::dropIfExists('notification_templates');
}
};

The shouldRun() method works consistently with both migrate and rollback commands. Migrations skipped during migration will also be skipped during rollback operations, maintaining database integrity.

By implementing the shouldRun() method, developers create more adaptable, context-aware migrations that respond to application requirements, making feature management and progressive deployment strategies more effective and manageable.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article