laravel-migration-preflight maintained by samody
Description
Pre-migration validation tool for Laravel migrations
Author
Last update
2026/04/16 18:10
(dev-main)
License
Downloads
7
Tags
# Laravel Migration Preflight
A Laravel package that validates migrations before execution to prevent schema-related failures.
## Installation
composer require samody/laravel-migration-preflight
## Usage
php artisan migrate:preflight
## Features
- Detect missing foreign key tables
- Prevent invalid migration order
- Catch schema issues before execution
- Improve deployment safety
## Example Output
Preflight FAILED:
create_orders_table
- Missing referenced table 'users' for 'user_id'