summaryrefslogtreecommitdiff
path: root/db/migrate/20171012101043_add_circuit_breaker_properties_to_application_settings.rb
blob: 91bba07b4d79dea920f0e43912b4ba9f04c18241 (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
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddCircuitBreakerPropertiesToApplicationSettings < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :application_settings,
               :circuitbreaker_failure_count_threshold,
               :integer,
               default: 160
    add_column :application_settings,
               :circuitbreaker_failure_wait_time,
               :integer,
               default: 30
    add_column :application_settings,
               :circuitbreaker_failure_reset_time,
               :integer,
               default: 1800
    add_column :application_settings,
               :circuitbreaker_storage_timeout,
               :integer,
               default: 30
  end
end