summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230302163339_add_index_to_oauth_access_grants_application_id.rb
blob: 0db6190e17d458b594e0db83c6b77312947b4bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddIndexToOauthAccessGrantsApplicationId < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  INDEX_NAME = 'index_oauth_access_grants_on_application_id'

  def up
    add_concurrent_index :oauth_access_grants, :application_id, name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :oauth_access_grants, name: INDEX_NAME
  end
end