PHPackages                             domlip94/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. domlip94/migrations-generator

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

domlip94/migrations-generator
=============================

Generates Laravel Migrations from an existing database

1132PHP

Since Apr 27Pushed 7y ago1 watchersCompare

[ Source](https://github.com/DomLip94/migrations-generator)[ Packagist](https://packagist.org/packages/domlip94/migrations-generator)[ RSS](/packages/domlip94-migrations-generator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Migrations Generater
============================

[](#laravel-migrations-generater)

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

This is a new fork of (). I intend to keep this up to date and add new features.

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

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

Please note that the Laravel 4 Generator have been moved to `https://github.com/domlip94/Laravel-4-Generators.git` to ensure I can keep it current. It still uses the original namespace `Way`

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

[](#laravel-5-installation)

The recommended way to install this is through composer:

```
composer require --dev "domlip94/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,
Domlip\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(\Domlip\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 "domlip94/migrations-generator"
```

Next, add the following service providers:

```
'Way\Generators\GeneratorsServiceProvider',
'Domlip\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

### 26 April 2019: v3.0.0

[](#26-april-2019-v300)

- Updated required class imports

### 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. Thank you to Bernhard Breytenbach for his version of the package.

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

[](#contributors)

Dominic Lipscombe ([@Domlip94](https://twitter.com/Domlip94)) 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

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 Bus Factor1

Top contributor holds 63.3% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7ec73350d4313b81cfe946b5ef715f875bf9ff6e28e2f4f39dede1f0a28cfbac?d=identicon)[DomLip94](/maintainers/DomLip94)

---

Top Contributors

[![Xethron](https://avatars.githubusercontent.com/u/1497338?v=4)](https://github.com/Xethron "Xethron (76 commits)")[![DomLip94](https://avatars.githubusercontent.com/u/23213222?v=4)](https://github.com/DomLip94 "DomLip94 (13 commits)")[![tomzx](https://avatars.githubusercontent.com/u/188960?v=4)](https://github.com/tomzx "tomzx (5 commits)")[![shemgp](https://avatars.githubusercontent.com/u/1734126?v=4)](https://github.com/shemgp "shemgp (3 commits)")[![viral-vector](https://avatars.githubusercontent.com/u/20329865?v=4)](https://github.com/viral-vector "viral-vector (3 commits)")[![akalongman](https://avatars.githubusercontent.com/u/423050?v=4)](https://github.com/akalongman "akalongman (2 commits)")[![assertchris](https://avatars.githubusercontent.com/u/200609?v=4)](https://github.com/assertchris "assertchris (2 commits)")[![ldebrouwer-rmn](https://avatars.githubusercontent.com/u/6084647?v=4)](https://github.com/ldebrouwer-rmn "ldebrouwer-rmn (2 commits)")[![pablorsk](https://avatars.githubusercontent.com/u/938894?v=4)](https://github.com/pablorsk "pablorsk (2 commits)")[![sebdesign](https://avatars.githubusercontent.com/u/667144?v=4)](https://github.com/sebdesign "sebdesign (2 commits)")[![Roboroads](https://avatars.githubusercontent.com/u/4398301?v=4)](https://github.com/Roboroads "Roboroads (1 commits)")[![bktz](https://avatars.githubusercontent.com/u/1176448?v=4)](https://github.com/bktz "bktz (1 commits)")[![shadywallas](https://avatars.githubusercontent.com/u/1280858?v=4)](https://github.com/shadywallas "shadywallas (1 commits)")[![KKSzymanowski](https://avatars.githubusercontent.com/u/13980973?v=4)](https://github.com/KKSzymanowski "KKSzymanowski (1 commits)")[![spescina](https://avatars.githubusercontent.com/u/1956604?v=4)](https://github.com/spescina "spescina (1 commits)")[![hming](https://avatars.githubusercontent.com/u/3996117?v=4)](https://github.com/hming "hming (1 commits)")[![Tucker-Eric](https://avatars.githubusercontent.com/u/6483755?v=4)](https://github.com/Tucker-Eric "Tucker-Eric (1 commits)")[![chrishepner](https://avatars.githubusercontent.com/u/396592?v=4)](https://github.com/chrishepner "chrishepner (1 commits)")[![virtualize](https://avatars.githubusercontent.com/u/220102?v=4)](https://github.com/virtualize "virtualize (1 commits)")[![peeto](https://avatars.githubusercontent.com/u/12824230?v=4)](https://github.com/peeto "peeto (1 commits)")

### Embed Badge

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

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

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k115.1M102](/packages/jdorn-sql-formatter)[illuminate/database

The Illuminate Database package.

2.8k52.4M9.3k](/packages/illuminate-database)[mongodb/mongodb

MongoDB driver library

1.6k64.0M542](/packages/mongodb-mongodb)[ramsey/uuid-doctrine

Use ramsey/uuid as a Doctrine field type.

90340.3M209](/packages/ramsey-uuid-doctrine)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)

PHPackages © 2026

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