summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190723105753_add_index_on_identities_lower_extern_uid_and_provider.rb
blob: 36ecca4821f4ca9c7bdf0dfc8b9257f196664332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddIndexOnIdentitiesLowerExternUidAndProvider < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  INDEX_NAME = "index_on_identities_lower_extern_uid_and_provider"

  def up
    add_concurrent_index(:identities, 'lower(extern_uid), provider', name: INDEX_NAME)
  end

  def down
    remove_concurrent_index_by_name(:identities, INDEX_NAME)
  end
end