Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200826053152_add_index_on_ci_pipelines_source_for_on_demand_dast.rb')
-rw-r--r--db/post_migrate/20200826053152_add_index_on_ci_pipelines_source_for_on_demand_dast.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/db/post_migrate/20200826053152_add_index_on_ci_pipelines_source_for_on_demand_dast.rb b/db/post_migrate/20200826053152_add_index_on_ci_pipelines_source_for_on_demand_dast.rb
deleted file mode 100644
index 6249adc9798..00000000000
--- a/db/post_migrate/20200826053152_add_index_on_ci_pipelines_source_for_on_demand_dast.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-# frozen_string_literal: true
-
-class AddIndexOnCiPipelinesSourceForOnDemandDast < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- INDEX_NAME = 'index_ci_pipelines_for_ondemand_dast_scans'
-
- SOURCE_ONDEMAND_DAST_SCAN_PIPELINE = 13
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index(
- :ci_pipelines, :id,
- where: "source = #{SOURCE_ONDEMAND_DAST_SCAN_PIPELINE}",
- name: INDEX_NAME
- )
- end
-
- def down
- remove_concurrent_index(
- :ci_pipelines, :id,
- where: "source = #{SOURCE_ONDEMAND_DAST_SCAN_PIPELINE}",
- name: INDEX_NAME
- )
- end
-end