summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb')
-rw-r--r--db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb b/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
deleted file mode 100644
index de473e7bb91..00000000000
--- a/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- if index_exists?(:ci_builds, :stage_id)
- remove_foreign_key(:ci_builds, column: :stage_id)
- remove_concurrent_index(:ci_builds, :stage_id)
- end
- end
-
- def down
- # noop
- end
-end