PHPackages                             sabidos/migrations-generator - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. sabidos/migrations-generator

ActiveLibrary[Database &amp; ORM](/categories/database)

sabidos/migrations-generator
============================

Generates Laravel Migrations from an existing database

1.0.0(6y ago)012MITPHPPHP &gt;=5.4.0

Since May 22Pushed 6y agoCompare

[ Source](https://github.com/Sabidos/migrations-generator)[ Packagist](https://packagist.org/packages/sabidos/migrations-generator)[ RSS](/packages/sabidos-migrations-generator/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (7)Versions (2)Used By (0)

Laravel Migrations Generator
============================

[](#laravel-migrations-generator)

[![Build Status](https://camo.githubusercontent.com/a75a9eaf5806d8613e5dfe5596aa4e3d40f400e02a85b433b7dd753ccaed8912/68747470733a2f2f7472617669732d63692e6f72672f58657468726f6e2f6d6967726174696f6e732d67656e657261746f722e737667)](https://travis-ci.org/Xethron/migrations-generator)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/5557d56ac660cf0eec68067367fb7c0002b03ab4168a83c6f5e259f7034d6f74/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f58657468726f6e2f6d6967726174696f6e732d67656e657261746f722f6261646765732f7175616c6974792d73636f72652e706e673f733d34316439313963366430343437343963623835373562623933366566626464633463656263306438)](https://scrutinizer-ci.com/g/Xethron/migrations-generator/)[![Latest Stable Version](https://camo.githubusercontent.com/1d605f88a202e10b2e872fb31b6a5eaeff329db7c6233e1ef7aa6f2d6d0521f2/68747470733a2f2f706f7365722e707567782e6f72672f78657468726f6e2f6d6967726174696f6e732d67656e657261746f722f762f737461626c652e706e67)](https://packagist.org/packages/xethron/migrations-generator)[![Total Downloads](https://camo.githubusercontent.com/1927d67a644c7077c484f5a83f5c6795820e3f789ea9e82256920522f00910f4/68747470733a2f2f706f7365722e707567782e6f72672f78657468726f6e2f6d6967726174696f6e732d67656e657261746f722f646f776e6c6f6164732e706e67)](https://packagist.org/packages/xethron/migrations-generator)[![License](https://camo.githubusercontent.com/2c992517843e4b88bfd14cd48a49f2d733814deecc7ab3663eaf9d42788cd877/68747470733a2f2f706f7365722e707567782e6f72672f78657468726f6e2f6d6967726174696f6e732d67656e657261746f722f6c6963656e73652e706e67)](https://packagist.org/packages/xethron/migrations-generator)

Generate Laravel Migrations from an existing database, including indexes and foreign keys!

Upgrading to Laravel 5.4
------------------------

[](#upgrading-to-laravel-54)

Please note that the Laravel 4 Generator edits have been moved to `https://github.com/xethron/Laravel-4-Generators.git` to update compatibility.

Laravel 5 installation
----------------------

[](#laravel-5-installation)

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 edit `config/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 your `app/Providers/AppServiceProvider.php` file, within the `register()` method:

```
public function register()
{
    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-stable` was forked from `way/generators` `3.0.3` and was made Laravel `5.0` ready. Jeffrey Way has discontinued support for Laravel 5, so the other `artisan generate:` commands may not have been made `5.0` compatible. Investigate the `artisan make:` commands for substitutes, contribute to Laravel to extend generation support, or fix it and submit a PR to `jamisonvalenta/feature/laravel-five-stable`.

Laravel 4 installation
----------------------

[](#laravel-4-installation)

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, run `php artisan`, and look for the command `migrate:generate`

Usage
-----

[](#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.

Check out Chung Tran's blog post for a quick step by step introduction: [Generate Migrations from an existing database in Laravel 4](http://codingtip.blogspot.com/2014/04/laravel-4-generate-migration-existed-dabase-laravel-4.html)

Changelog
---------

[](#changelog)

Changelog for Laravel Migrations Generator

### 20 November 2016: v2.0.0

[](#20-november-2016-v200)

- Support for Laravel 5

### 20 November 2016: v1.3.0

[](#20-november-2016-v130)

- 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

### 25 July: v1.2.2

[](#25-july-v122)

- Support for Laravel 4.2
- Support for named foreign keys
- Fix error with --ignore option

### 29 May: v1.2.1

[](#29-may-v121)

- Fixed problem with char fields showing up as varchar
- Allow decimal, float, and double to be unsigned
- Allow cascading on foreign key update/delete

### 16 May: v1.2.0

[](#16-may-v120)

- Now fully supports for enum fields
- Add support for bit fields as Boolean (Laravel Migration Limitation)

### 10 May: v1.1.1

[](#10-may-v111)

- Fix crash when migrating tables that use enum
- Added Tests
- Major refactoring of the code

### 24 March: v1.1.0

[](#24-march-v110)

- 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

Thank You
---------

[](#thank-you)

Thanks to Jeffrey Way for his amazing Laravel-4-Generators package. This package depends greatly on his work.

Contributors
------------

[](#contributors)

Bernhard Breytenbach ([@BBreyten](https://twitter.com/BBreyten))

License
-------

[](#license)

The Laravel Migrations Generator is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2544d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a42bdd8c97ccd1b29ac9a82cf27d10127f6f2201832cc3c61eb5a3c58e152007?d=identicon)[SabidosTecnologia](/maintainers/SabidosTecnologia)

---

Top Contributors

[![Sabidos](https://avatars.githubusercontent.com/u/31895696?v=4)](https://github.com/Sabidos "Sabidos (8 commits)")

---

Tags

laravelmigrationgeneratorartisanmigrations

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sabidos-migrations-generator/health.svg)

```
[![Health](https://phpackages.com/badges/sabidos-migrations-generator/health.svg)](https://phpackages.com/packages/sabidos-migrations-generator)
```

###  Alternatives

[xethron/migrations-generator

Generates Laravel Migrations from an existing database

3.3k3.3M23](/packages/xethron-migrations-generator)[kitloong/laravel-migrations-generator

Generates Laravel Migrations from an existing database

2.9k7.4M24](/packages/kitloong-laravel-migrations-generator)[oscarafdev/migrations-generator

Generates Laravel Migrations from an existing database

362585.2k](/packages/oscarafdev-migrations-generator)[daavelar/revengedb

RevengeDb provides an artisan command to make a reverse engineer of the database, generating automatically the migrations for you

193.1k](/packages/daavelar-revengedb)[dragon-code/laravel-data-dumper

Adding data from certain tables when executing the `php artisan schema:dump` console command

3418.6k](/packages/dragon-code-laravel-data-dumper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
