Package Data | |
---|---|
Maintainer Username: | oscarafdev |
Maintainer Contact: | oscarafdev@gmail.com (Oscar Fernandez) |
Package Create Date: | 2019-11-30 |
Package Last Update: | 2023-12-13 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:20:52 |
Package Statistics | |
---|---|
Total Downloads: | 517,062 |
Monthly Downloads: | 6,266 |
Daily Downloads: | 275 |
Total Stars: | 359 |
Total Watchers: | 10 |
Total Forks: | 77 |
Total Open Issues: | 6 |
Generate Laravel Migrations from an existing database, including indexes and foreign keys!
The recommended way to install this is through composer:
composer require oscarafdev/migrations-generator 2.0.17
In Laravel 5.5+ the service providers will automatically get registered.
To generate migrations from a database, you need to have your database setup in Laravel's Config.
Run php artisan migrate:generate
to create migrations for all the tables, or you can specify the tables you wish to generate using php artisan migrate:generate table1,table2,table3,table4,table5
. You can also ignore tables with --ignore="table3,table4,table5"
Laravel Migrations Generator will first generate all the tables, columns and indexes, and afterwards setup all the foreign key constraints. So make sure you include all the tables listed in the foreign keys so that they are present when the foreign keys are created.
You can also specify the connection name if you are not using your default connection with --connection="connection_name"
Run php artisan help migrate:generate
for a list of options.
Check out Chung Tran's blog post for a quick step by step introduction: Generate Migrations from an existing database in Laravel 4
Changelog for Laravel Migrations Generator
Thanks to Jeffrey Way for his amazing Laravel-4-Generators package. This package depends greatly on his work.
Bernhard Breytenbach (@BBreyten) Oscar Fernandez (@oscarafdev)
The Laravel Migrations Generator is open-sourced software licensed under the MIT license