summaryrefslogtreecommitdiff
path: root/db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb')
-rw-r--r--db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb b/db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb
deleted file mode 100644
index a1dcfc70650..00000000000
--- a/db/migrate/20171121144800_ci_pipelines_index_on_project_id_ref_status_id.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class CiPipelinesIndexOnProjectIdRefStatusId < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- TABLE = :ci_pipelines
- OLD_COLUMNS = %i[project_id ref status].freeze
- NEW_COLUMNS = %i[project_id ref status id].freeze
-
- def up
- unless index_exists?(TABLE, NEW_COLUMNS)
- add_concurrent_index(TABLE, NEW_COLUMNS)
- end
-
- if index_exists?(TABLE, OLD_COLUMNS)
- remove_concurrent_index(TABLE, OLD_COLUMNS)
- end
- end
-
- def down
- unless index_exists?(TABLE, OLD_COLUMNS)
- add_concurrent_index(TABLE, OLD_COLUMNS)
- end
-
- if index_exists?(TABLE, NEW_COLUMNS)
- remove_concurrent_index(TABLE, NEW_COLUMNS)
- end
- end
-end