summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-18 08:17:02 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-18 08:17:02 +0000
commitb39512ed755239198a9c294b6a45e65c05900235 (patch)
treed234a3efade1de67c46b9e5a38ce813627726aa7 /db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb
parentd31474cf3b17ece37939d20082b07f6657cc79a9 (diff)
downloadgitlab-ce-b39512ed755239198a9c294b6a45e65c05900235.tar.gz
Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.0-rc42
Diffstat (limited to 'db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb')
-rw-r--r--db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb b/db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb
new file mode 100644
index 00000000000..a8a9bab2c84
--- /dev/null
+++ b/db/post_migrate/20220715190612_drop_index_on_security_findings_uuid_and_scan_id.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class DropIndexOnSecurityFindingsUuidAndScanId < Gitlab::Database::Migration[2.0]
+ INDEX_NAME = 'index_security_findings_on_uuid_and_scan_id'
+
+ disable_ddl_transaction!
+
+ def up
+ remove_concurrent_index_by_name :security_findings, INDEX_NAME
+ end
+
+ def down
+ add_concurrent_index :security_findings, [:uuid, :scan_id], unique: true, name: INDEX_NAME
+ end
+end