Skip to content

Instantly share code, notes, and snippets.

@Ducain
Ducain / capfile_for_phinx.rb
Last active June 13, 2017 09:56
Capistrano 3 running Phinx migrations on Windows server
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