summaryrefslogtreecommitdiff
path: root/db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb')
-rw-r--r--db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb b/db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb
new file mode 100644
index 00000000000..23e7b5ba7b9
--- /dev/null
+++ b/db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class AddIndexOnIdAndLdapKeyToKeys < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+ INDEX_NAME = 'index_keys_on_id_and_ldap_key_type'
+
+ disable_ddl_transaction!
+
+ def up
+ add_concurrent_index :keys, [:id], where: "type = 'LDAPKey'", name: INDEX_NAME
+ end
+
+ def down
+ remove_concurrent_index_by_name :keys, INDEX_NAME
+ end
+end