百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
M

migrations-generator

> 后端框架
开源

Laravel 迁移生成器: 从现有数据库结构自动生成迁移。

3.3K stars0 点赞1 次浏览
访问官网GitHub

工具介绍

Laravel 迁移生成器: 从现有数据库结构自动生成迁移。

Laravel Migrations Generator

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

Upgrading to Laravel 5.4

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

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

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

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

Changelog

Changelog for Laravel Migrations Generator

20 November 2016: v2.0.0

  • Support for Laravel 5

20 November 2016: v1.3.0

  • 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

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

29 May: v1.2.1

  • 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

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

10 May: v1.1.1

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

24 March: v1.1.0

  • 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

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

Contributors

Bernhard Breytenbach (@BBreyten)

License

The Laravel Migrations Generator is open-sourced software licensed under the MIT license

GitHub Issues· 81 开放

在 GitHub 查看全部
  • #174

    Tinyint wrong conversion to boolean

    更新于 2024年8月19日
  • #203

    Undefined property: stdClass::$column_name

    更新于 2023年2月17日
  • #197

    Not Working with Old database enum values

    更新于 2023年2月17日
  • #162

    Command "migrate:generate" is not defined

    更新于 2022年11月25日
  • #206

    Support for postgres

    更新于 2022年5月10日
  • #208

    not working on laravel 9 what we should do now

    更新于 2022年5月10日
  • #207

    Is that will be available for Laravel 8?

    更新于 2021年5月27日
  • #202

    'migrations' table was not updated

    更新于 2021年3月22日
  • #189

    Support for Postgresql hstore.

    更新于 2020年12月8日
  • #204

    Migrations generator working with Laravel 7.11

    更新于 2020年9月29日

核心特点

  • •Thanks to @jamisonvalenta, you can now generate Migrations in Laravel 5!
  • •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
  • •--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

> 标签

PHPexisting-databaselaravel-migrationphp

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类后端框架
定价开源

> 相关工具

N
Node.js
基于 V8 的 JavaScript 运行时
D
Django
Python 高级 Web 框架
S
Spring Boot
Java 生态主流微服务框架