Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20171123101046_remove_old_circuitbreaker_config.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e646d4d3224ece91e5d4324f8088665ff861b325 (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
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

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

  DOWNTIME = false

  def up
    remove_column :application_settings,
                  :circuitbreaker_backoff_threshold
    remove_column :application_settings,
                  :circuitbreaker_failure_wait_time
  end

  def down
    add_column :application_settings,
               :circuitbreaker_backoff_threshold,
               :integer,
               default: 80
    add_column :application_settings,
               :circuitbreaker_failure_wait_time,
               :integer,
               default: 30
  end
end