summaryrefslogtreecommitdiff
path: root/db/migrate/20200316111759_add_index_on_id_and_ldap_key_to_keys.rb
blob: 23e7b5ba7b91fe220ee4b3011e2bf52a691ffaaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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