webikevn / migration-generate
Generates Laravel Migrations from an existing database
Requires
- php: 7.3.*
- doctrine/dbal: ~2.4
- illuminate/support: ^5.6|^6.0|^7.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.6|^4.0|^5.0
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2024-11-27 15:43:06 UTC
README
Generate Laravel Migrations from an existing database, including indexes and foreign keys!
##News
- Major rewrite on
FieldGenerator
andIndexGenerator
. - Fixed miscellaneous bugs.
- Added
spatial
data type support such asgeometry
,point
, etc. - Support more Laravel migration types such as
json
,uuid
,longText
,year
, etc - Added
spatialIndex
support. timestamp
anddatetime
support precision.- Fixed MySQL
tinyInteger
andboolean
issue. - Able generate
softDeletes
,rememberToken
,timestamps
types. - Support
set
for MySQL. - It is now possible to generate nullable
timestamp
- Removed unused classes.
- Added UT!
- More UT will be added to increase coverage.
This package is cloned from https://github.com/Xethron/migrations-generator and updated to support Laravel 6 and above.
Version Compatibility
Install
The recommended way to install this is through composer:
composer require --dev "webikevn/migration-generate"
Laravel Setup
Laravel will automatically register service provider for you.
Lumen Setup
Auto discovery is not available in Lumen, you need some modification on bootstrap/app.php
Register provider
Add following line
$app->register(\Webike\MigrationsGenerator\MigrationsGeneratorServiceProvider::class);
Usage
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.
Thank You
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.
Contributors
Nguyen Giang (https://www.facebook.com/truonggiang.gk)
License
The Laravel Migrations Generator is open-sourced software licensed under the MIT license