From d9ab72d6080f594d0b3cae15f14b3ef2c6c638cb Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 20 Oct 2021 08:43:02 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-4-stable-ee --- ...0191208071112_add_fingerprint_sha256_index_to_key.rb | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb (limited to 'db/migrate/20191208071112_add_fingerprint_sha256_index_to_key.rb') 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 -- cgit v1.2.1