kitloong / laravel-migrations-generator
Generates Laravel Migrations from an existing database
Fund package maintenance!
kitloong
Buy Me A Coffee
Installs: 4 468 835
Dependents: 23
Suggesters: 1
Security: 0
Stars: 2 496
Watchers: 44
Forks: 276
Open Issues: 0
Requires
- php: ^8.1
- ext-pdo: *
- illuminate/support: ^10.43|^11.0
Requires (Dev)
- barryvdh/laravel-ide-helper: ^2.0|^3.0
- friendsofphp/php-cs-fixer: ^3.1
- larastan/larastan: ^1.0|^2.0
- mockery/mockery: ^1.0
- orchestra/testbench: ^8.0|^9.0
- phpmd/phpmd: ^2.10
- slevomat/coding-standard: ^8.0
- squizlabs/php_codesniffer: ^3.5
- 7.x-dev
- v7.0.6
- v7.0.5
- v7.0.4
- v7.0.3
- v7.0.2
- v7.0.1
- v7.0.0
- 6.x-dev
- v6.11.1
- v6.11.0
- v6.10.0
- v6.9.1
- v6.9.0
- v6.8.2
- v6.8.1
- v6.8.0
- v6.7.1
- v6.7.0
- v6.6.3
- v6.6.2
- v6.6.1
- v6.6.0
- v6.5.1
- v6.5.0
- v6.4.3
- v6.4.2
- v6.4.1
- v6.4.0
- v6.3.2
- v6.3.1
- v6.3.0
- v6.2.1
- v6.2.0
- v6.1.0
- v6.0.0
- 5.x-dev
- v5.2.2
- v5.2.1
- v5.2.0
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.1
- v5.0.0
- 4.x-dev
- v4.5.1
- v4.5.0
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.2
- 4.3.1
- 4.3.0
- 4.2.0
- 4.1.0
- 4.0.2
- 4.0.1
- 4.0.0
- 3.x-dev
- 3.1.1
- 3.0
- dev-feature/update
- dev-main
- dev-feature/fix
- dev-feature/current-precision
- dev-feature/fix-6
This package is auto-updated.
Last update: 2024-11-04 03:56:11 UTC
README
Generate Laravel Migrations from an existing database, including indexes and foreign keys!
This package is a modified version of https://github.com/Xethron/migrations-generator that has been updated to support Laravel 5.6 and beyond, along with additional features.
Supported Database
Laravel Migrations Generator supports all five Laravel first-party support databases:
- MariaDB
- MySQL
- PostgreSQL
- SQL Server
- SQLite
Version Compatibility
Install
The recommended way to install this is through composer:
composer require --dev kitloong/laravel-migrations-generator
Laravel Setup
Laravel will automatically register service provider for you.
Lumen Setup
Expand
Auto-discovery is not available in Lumen, you need some modification on bootstrap/app.php
.
Enable Facade
Uncomment the following line.
$app->withFacades();
Register Provider
Add following line into the Register Service Providers
section.
$app->register(\KitLoong\MigrationsGenerator\MigrationsGeneratorServiceProvider::class);
Usage
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"
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:
php artisan migrate:generate --connection="connection_name"
Squash Migrations
By default, Generator will generate multiple migration files for each table.
You can squash all migrations into a single file with:
php artisan migrate:generate --squash
Options
Run php artisan help migrate:generate
for a list of options.
SQLite Alter Foreign Key
The generator first generates all tables and then adds foreign keys to existing tables.
However, SQLite only supports foreign keys upon creation of the table and not when tables are altered. add_foreign_keys migrations will still be generated, however will get omitted if migrate to SQLite type database.
User-Defined Type Columns
The generator will recognize user-defined type from the schema, and then generate migration as
public function up() { Schema::create('table', function (Blueprint $table) { ... }); DB::statement("ALTER TABLE table ADD column custom_type NOT NULL"); }
Note that the new column
is always added at the end of the created table
which means the ordering of the column generated in migration will differ from what we have from the schema.
Supported database with user-defined types:
- PostgreSQL
- SQL Server
Thank You
Thanks to Bernhard Breytenbach for his great work. This package is based on https://github.com/Xethron/migrations-generator.
Contributors
License
The Laravel Migrations Generator is open-sourced software licensed under the MIT license