summaryrefslogtreecommitdiff
path: root/db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb')
-rw-r--r--db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb b/db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb
deleted file mode 100644
index d2f5ad7a420..00000000000
--- a/db/migrate/20190830080123_add_index_to_ci_pipelines_external_pull_request.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddIndexToCiPipelinesExternalPullRequest < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :ci_pipelines, :external_pull_request_id, where: 'external_pull_request_id IS NOT NULL'
- end
-
- def down
- remove_concurrent_index :ci_pipelines, :external_pull_request_id
- end
-end