summaryrefslogtreecommitdiff
path: root/db/migrate/20210120221743_delete_oauth_applications_tmp_index.rb
blob: d29e63ba5da0329f295e39734189ac4f7da1d6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class DeleteOauthApplicationsTmpIndex < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'tmp_index_oauth_applications_on_id_where_trusted'

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :oauth_applications, INDEX_NAME
  end

  def down
    add_concurrent_index :oauth_applications, :id, where: 'trusted = true', name: INDEX_NAME
  end
end