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, 18 insertions, 0 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
new file mode 100644
index 00000000000..3879cf9133b
--- /dev/null
+++ b/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
@@ -0,0 +1,18 @@
+class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration
+ 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