This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
after "deploy:updating", "deploy:phinx_migrations" | |
namespace :deploy do | |
task :restart do ; end | |
desc 'Run Phinx migrations' | |
task :phinx_migrations do | |
on roles(:app) do | |
within release_path do | |
execute 'php', 'vendor/robmorgan/phinx/bin/phinx', 'migrate', '-e', 'production', raise_on_non_zero_exit: false |