Package Data | |
---|---|
Maintainer Username: | kitloong |
Maintainer Contact: | kitloong1008@gmail.com (Kit Loong) |
Package Create Date: | 2020-03-18 |
Package Last Update: | 2024-11-04 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:04:39 |
Package Statistics | |
---|---|
Total Downloads: | 4,530,721 |
Monthly Downloads: | 178,899 |
Daily Downloads: | 2,533 |
Total Stars: | 2,506 |
Total Watchers: | 44 |
Total Forks: | 278 |
Total Open Issues: | 0 |
Generate Laravel Migrations from an existing database, including indexes and foreign keys!
FieldGenerator
and IndexGenerator
.spatial
data type support such as geometry
, point
, etc.json
, uuid
, longText
, year
, etcspatialIndex
support.timestamp
and datetime
support precision.tinyInteger
and boolean
issue.softDeletes
, rememberToken
, timestamps
types.set
for MySQL.timestamp
This package is cloned from https://github.com/Xethron/migrations-generator and updated to support Laravel 6 and above.
|Laravel|Version| |---|---| |7.x|4.x| |6.x|4.x| |5.8.x|4.x| |5.7.x|4.x| |5.6.x|4.x| |5.5 and below|https://github.com/Xethron/migrations-generator|
The recommended way to install this is through composer:
composer require --dev "kitloong/laravel-migrations-generator"
Laravel will automatically register service provider for you.
Auto discovery is not available in Lumen, you need some modification on bootstrap/app.php
Uncomment the following line
$app->withFacades();
Add following line
$app->register(\KitLoong\MigrationsGenerator\MigrationsGeneratorServiceProvider::class);
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.
Thanks to Bernhard Breytenbach for his great work. This package is cloned from https://github.com/Xethron/migrations-generator
Thanks to Jeffrey Way for his amazing Laravel-4-Generators package. This package depends greatly on his work.
Kit Loong
Bernhard Breytenbach (@BBreyten)
The Laravel Migrations Generator is open-sourced software licensed under the MIT license