Looking to hire Laravel developers? Try LaraJobs

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

Comments
comments powered by Disqus

# 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'