Package Data | |
---|---|
Maintainer Username: | JayBizzle |
Maintainer Contact: | mbeech@mark-beech.co.uk (Mark Beech) |
Package Create Date: | 2015-03-24 |
Package Last Update: | 2025-01-16 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-25 15:01:50 |
Package Statistics | |
---|---|
Total Downloads: | 356,434 |
Monthly Downloads: | 3,619 |
Daily Downloads: | 59 |
Total Stars: | 110 |
Total Watchers: | 6 |
Total Forks: | 18 |
Total Open Issues: | 5 |
The number of migrations in any sized project can quickly become huge, and although they are ordered, having one big list can sometimes be inconvenient and slow to navigate.
This package will put your migrations in yyyy/mm
folders e.g.
./database/migrations/2015/03/2015_03_25_210946_create_users_table.php
Run composer require jaybizzle/laravel-migrations-organiser 4.*
or add "jaybizzle/laravel-migrations-organiser": "4.*"
to your composer.json
file.
Add the following to the providers
array in your config/app.php
file..
Jaybizzle\MigrationsOrganiser\MigrationsOrganiserServiceProvider::class,
Laravel ^5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider
This package hooks into the default artisan make:migration
command. Just use that as you normally would and the package takes care of the rest.
No problem, just run artisan migrate:organise
and your migrations will be moved into the relevant yyyy/mm
folders.
Again, no problem. Running artisan migrate:disorganise
will move all migrations from the yyyy/mm
folder structure into the base migrations folder. Add the --force
option to delete left over folders without confirmation.