umbrellio / php-deploy
This package is abandoned and no longer maintained.
The author suggests using the https://github.com/umbrellio/rollback-missing-migrations package instead.
Laravel package for rolling back migrations between different releases
4.0.0
2024-09-15 20:24 UTC
Requires
- php: ^8.3|^8.4
- illuminate/console: ^11.0
- illuminate/database: ^11.0
- illuminate/support: ^11.0
Requires (Dev)
- laravel/legacy-factories: ^1.0
- orchestra/testbench: ^9.0
- php-coveralls/php-coveralls: ^2.7
- php-mock/php-mock: ^2.0
- phpunit/phpunit: ^11.0
- umbrellio/code-style-php: ^1.2
This package is auto-updated.
Last update: 2024-09-15 20:24:55 UTC
README
Laravel package for rolling back migrations between different releases
Installation
composer
composer require umbrellio/rollback-missing-migrations
Usage
In your new release directory:
php artisan rollback_missing_migrations:rollback <path_to_artisan>
<path_to_artisan>
- absolute path to artisan command in previous release
Example:
php artisan rollback_missing_migrations:rollback /projects/old_release/your_app/artisan
If your migrations files locate in the custom directory you can use optional parameters:
--path
- path where your migration files locate in current release--old-path
- path where your migration files locate in old release--realpath
- this flag indicates, how--path
and--old-path
formats (absolute or relative) will be recognized
Example with a relative path:
php artisan rollback_missing_migrations:rollback /projects/old_release_app/artisan \
--old-path=database/old_custom_folder \
--path=database/custom_migration_folder
Example with an absolute path:
php artisan rollback_missing_migrations:rollback /projects/old_release/your_app/artisan \
--old-path=/projects/old_release/your_app/database/old_custom_folder \
--path=/new_release/your_app/database/custom_migration_folder \
--realpath
In case if you need rollback new migrations different from origin/master, you can use rollback_new_migrations:rollback
Authors
Created by Art4es & Korben Dallas.