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