This overrides and extends Laravel's own migration service provider, migrate, and rollback commands to provide some additional functionality:
- Adds a 'path' column to the migration tracking table so that the
migrate:rollbackcommand works properly even when the--pathoption is used when running migrations - Add improved error display to the
migratecommand, displaying which migrations were succesful and which migration failed in the event of a failed migration
Via Composer
$ composer require zingle/laravel5-migratorRun the migration to add the path column to your migrations table:
php artisan migrate --path=vendor/zingle/laravel5-migrator/src/migrations
Add the service provider Zingle\LaravelMigrator\LaravelMigratorServiceProvider to your config/app.php file providers array.
This overrides and extends the default Laravel migrate and rollback commands, so just use them as normal.
Please see CHANGELOG for more information what has changed recently.
$ composer testThe MIT License (MIT). Please see License File for more information.