Skip to main content
Back to packages
2,864 GitHub stars

kitloong/laravel-migrations-generator

View on GitHub

Description

Laravel Migrations Generator: Automatically generate your migrations from an existing database schema

To generate migrations from a database, you need to have your database setup in Laravel's config (config/database.php).

To create migrations for all the tables, run:

php artisan migrate:generate

You can specify the tables you wish to generate using:

php artisan migrate:generate --tables="table1,table2,table3,table4,table5"

You can also ignore tables with:

php artisan migrate:generate --ignore="table3,table4,table5"

Related Content on Laravel Daily

Video