summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb')
-rw-r--r--db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb b/db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb
deleted file mode 100644
index ae954289291..00000000000
--- a/db/post_migrate/20171123101020_update_circuitbreaker_defaults.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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[4.2]
- 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