BigW Consortium Gitlab

20170306170512_migrate_legacy_manual_actions.rb 561 Bytes
Newer Older
1 2 3 4 5 6
class MigrateLegacyManualActions < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
7 8
    disable_statement_timeout

9 10 11 12 13 14 15
    execute <<-EOS
      UPDATE ci_builds SET status = 'manual', allow_failure = true
        WHERE ci_builds.when = 'manual' AND ci_builds.status = 'skipped';
    EOS
  end

  def down
16 17
    disable_statement_timeout

18 19 20 21 22 23
    execute <<-EOS
      UPDATE ci_builds SET status = 'skipped', allow_failure = false
        WHERE ci_builds.when = 'manual' AND ci_builds.status = 'manual';
    EOS
  end
end