- Notifications
You must be signed in to change notification settings - Fork496
Laravel Migrations Generator: Automatically generate your migrations from an existing database schema.
License
Xethron/migrations-generator
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Generate Laravel Migrations from an existing database, including indexes and foreign keys!
Please note that the Laravel 4 Generator edits have been moved tohttps://github.com/xethron/Laravel-4-Generators.git to update compatibility.
The recommended way to install this is through composer:
composer require --dev"xethron/migrations-generator"In Laravel 5.5 the service providers will automatically get registered.
In older versions of the framework editconfig/app.php and add this to providers section:
Way\Generators\GeneratorsServiceProvider::class,Xethron\MigrationsGenerator\MigrationsGeneratorServiceProvider::class,
If you want this lib only for dev, you can add the following code to yourapp/Providers/AppServiceProvider.php file, within theregister() method:
publicfunctionregister(){if ($this->app->environment() !=='production') {$this->app->register(\Way\Generators\GeneratorsServiceProvider::class);$this->app->register(\Xethron\MigrationsGenerator\MigrationsGeneratorServiceProvider::class); }// ...}
Notes:
- Thanks to @jamisonvalenta, you can now generate Migrations in Laravel 5!
feature/laravel-five-stablewas forked fromway/generators3.0.3and was made Laravel5.0ready. Jeffrey Way has discontinued support for Laravel 5, so the otherartisan generate:commands may not have been made5.0compatible. Investigate theartisan make:commands for substitutes, contribute to Laravel to extend generation support, or fix it and submit a PR tojamisonvalenta/feature/laravel-five-stable.
Run the following composer command:
composer require --dev"xethron/migrations-generator:~1.3.0"Next, add the following service providers:
'Way\Generators\GeneratorsServiceProvider','Xethron\MigrationsGenerator\MigrationsGeneratorServiceProvider',
And you're set. To double check if its working, runphp artisan, and look for the commandmigrate:generate
To generate migrations from a database, you need to have your database setup in Laravel's Config.
Runphp artisan migrate:generate to create migrations for all the tables, or you can specify the tables you wish to generate usingphp 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"
Runphp 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
- Support for Laravel 5
- Add options --defaultIndexNames and --defaultFKNames to use Laravel's default generated names
- --no-interaction support
- Migrate table field comments
- Add connection to migrations if its not the default
- Bugfix:
- --ignore doesn't ignoring the first table in the list
- Remove backticks from index names #17
- Drop foreign keys used incorrect key name #34
- Remove table prefix from migrations
- Escape table names and args
- Map JSON columns as text
- Boolean default results in empty string
- Support for Laravel 4.2
- Support for named foreign keys
- Fix error with --ignore option
- Fixed problem with char fields showing up as varchar
- Allow decimal, float, and double to be unsigned
- Allow cascading on foreign key update/delete
- Now fully supports for enum fields
- Add support for bit fields as Boolean (Laravel Migration Limitation)
- Fix crash when migrating tables that use enum
- Added Tests
- Major refactoring of the code
- Ability to add entries into the Migrations Table, so that they won't be run as they already exist.
- Convert Blobs to Binary fields
- Minor Code Changes
Thanks to Jeffrey Way for his amazing Laravel-4-Generators package. This package depends greatly on his work.
Bernhard Breytenbach (@BBreyten)
The Laravel Migrations Generator is open-sourced software licensed under theMIT license
About
Laravel Migrations Generator: Automatically generate your migrations from an existing database schema.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.



