summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170502070007_enable_auto_cancel_pending_pipelines_for_all.rb
blob: a19b73fc114b6cb94aec7b9b8422a09e0446a0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class EnableAutoCancelPendingPipelinesForAll < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  DOWNTIME = false

  def up
    update_column_in_batches(:projects, :auto_cancel_pending_pipelines, 1)
  end

  def down
    # Nothing we can do!
  end
end