summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb
blob: 8e1c9e6d6bb636d956a77b87a0e0717f4e19947d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class UpdateCircuitbreakerDefaults < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  class ApplicationSetting < ActiveRecord::Base; end

  def up
    change_column_default :application_settings,
                          :circuitbreaker_failure_count_threshold,
                          3
    change_column_default :application_settings,
                          :circuitbreaker_storage_timeout,
                          15

    ApplicationSetting.update_all(circuitbreaker_failure_count_threshold: 3,
                                  circuitbreaker_storage_timeout: 15)
  end

  def down
    change_column_default :application_settings,
                          :circuitbreaker_failure_count_threshold,
                          160
    change_column_default :application_settings,
                          :circuitbreaker_storage_timeout,
                          30

    ApplicationSetting.update_all(circuitbreaker_failure_count_threshold: 160,
                                  circuitbreaker_storage_timeout: 30)
  end
end