erjanmx / laravel-migrate-check
A command to check for pending migrations. Exits with non-zero code if there are any
Installs: 241 229
Dependents: 1
Suggesters: 0
Security: 0
Stars: 54
Watchers: 3
Forks: 11
Open Issues: 1
Requires
- php: ^7.2||^8.0
- illuminate/console: ^6|^7|^8|^9|^10.0
- illuminate/events: ^6|^7|^8|^9|^10.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^6.0|^8.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-11-18 14:36:59 UTC
README
An artisan command to check for pending migrations. Exits with non-zero code if there any.
Laravel has a migrate:status
command to check status of migrations. But this command mostly for humans. There are situations where one needs to know whether to run migrations when using autodeployment, maybe with switching to maintenance mode.
This package contains a migrate:check
command that exits with non-zero code if there are any migrations to run.
Requirements
This command supports all database drivers that Laravel does.
Installation
You can install the package via composer:
composer require erjanmx/laravel-migrate-check
Thanks to Laravel 5.5 package auto-discovery the migrate:check
command will be registered
Usage
php artisan migrate:сheck
You can specify database and path to migration file via options just like they are used in php artisan migrate
command
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
In order for the test to be run you should set up an empty mysql database laravel_migrate_check
. The username should be root
, the required password should be empty.
$ composer test
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.