summaryrefslogtreecommitdiff
path: root/db/migrate/20220729073603_index_personal_access_tokens_on_id_and_created_at.rb
blob: b865f76fec1ca6f91e04d7991ee3bdea92f8a8f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class IndexPersonalAccessTokensOnIdAndCreatedAt < Gitlab::Database::Migration[2.0]
  INDEX_NAME = 'index_personal_access_tokens_on_id_and_created_at'

  disable_ddl_transaction!

  def up
    add_concurrent_index :personal_access_tokens, [:id, :created_at], name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :personal_access_tokens, INDEX_NAME
  end
end