stechstudio / laravel-locking-migrations
Ensure only one server runs migrations at a time
0.1
2019-12-19 02:43 UTC
Requires
- illuminate/support: ~5|~6
Requires (Dev)
- mockery/mockery: ^1.1
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~7.0
- sempro/phpunit-pretty-print: ^1.0
This package is auto-updated.
Last update: 2024-10-19 13:12:46 UTC
README
If your app deployment process deploys to multiple instances at the same time, and each of those attempts to run migrations, you can run into problems.
This package adds a --lock
option to the php artisan migrate
command, which will ensure only one server runs migrations at a time.
Installation
Via Composer
$ composer require stechstudio/laravel-locking-migrations
Usage
In your composer.json post-install-cmd
hook (or wherever you are running migrations during deploy) simply add the --lock
option.
php artisan migrate --lock