summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180507083701_set_minimal_project_build_timeout.rb
blob: d9d9e93f5a3b02bfe9961d4f1ccbeac27f3697e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class SetMinimalProjectBuildTimeout < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  MINIMUM_TIMEOUT = 600

  # Allow this migration to resume if it fails partway through
  disable_ddl_transaction!

  def up
    update_column_in_batches(:projects, :build_timeout, MINIMUM_TIMEOUT) do |table, query|
      query.where(table[:build_timeout].lt(MINIMUM_TIMEOUT))
    end
  end

  def down
    # no-op
  end
end