summaryrefslogtreecommitdiff
path: root/db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 08:43:02 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 08:43:02 +0000
commitd9ab72d6080f594d0b3cae15f14b3ef2c6c638cb (patch)
tree2341ef426af70ad1e289c38036737e04b0aa5007 /db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb
parentd6e514dd13db8947884cd58fe2a9c2a063400a9b (diff)
downloadgitlab-ce-d9ab72d6080f594d0b3cae15f14b3ef2c6c638cb.tar.gz
Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42
Diffstat (limited to 'db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb')
-rw-r--r--db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb b/db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb
deleted file mode 100644
index 6f0c4bcd321..00000000000
--- a/db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddFingerprintSha256IndexToKey < ActiveRecord::Migration[5.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index(:keys, "fingerprint_sha256")
- end
-
- def down
- remove_concurrent_index(:keys, "fingerprint_sha256")
- end
-end