yusufalper/laravel-subfolder-migrations

This package is abandoned and no longer maintained. No replacement package was suggested.

Organize your migrations into subfolders.

v3.0.0 2024-05-10 14:46 UTC

This package is auto-updated.

Last update: 2024-05-10 14:47:07 UTC


README

IF YOU DO NOT WANT TO USE PACKAGE FOR THIS FEATURE, YOU CAN USE SIMPLE PROVIDER GIST FROM HERE

This package allows you to split database/migrations into subfolders. Especially in large projects, migrations folder may cause headaches.

Now you can turn this:

  • database

    • migrations
      • 2019_08_19_000000_create_users_table.php
      • 2019_08_19_000000_create_user_xs_table.php
      • 2019_08_19_000000_create_user_ys_table.php
      • 2019_08_19_000000_create_companies_table.php
      • 2019_08_19_000000_create_company_zs_table.php
      • 2019_08_19_000000_create_company_ts_table.php

into this:

  • database

    • migrations
      • company_migrations
        • 2019_08_19_000003_create_companies_table.php
        • 2019_08_19_000004_create_company_zs_table.php
        • 2019_08_19_000005_create_company_ts_table.php
      • user_migrations
        • 2019_08_19_000000_create_users_table.php
        • 2019_08_19_000001_create_user_xs_table.php
        • 2019_08_19_000002_create_user_ys_table.php

Directory order is not important, the only important thing is naming migration files as before. Package will scan all migration folder with all subfolders and will do the migrations in order. In the example above, the first file to run will be "2019_08_19_000000_create_users_table.php".

Installation

You can install the package via composer:

composer require yusufalper/laravel-subfolder-migrations

And you are good to go! You can run your migration commands as just like before. For example:

php artisan migrate

Note:

If you don't have auto discovery enabled, you should add the following to config/app.php "providers" array:

Yusufalper\LaravelSubfolderMigrations\LaravelSubfolderMigrationsServiceProvider::class,

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.