stechstudio / laravel-locking-migrations
Ensure only one server runs migrations at a time
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/stechstudio/laravel-locking-migrations
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: 2025-10-19 15:43:50 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