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

class RemoveNoteIdIndex < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  TABLE = :suggestions
  INDEX_NAME = 'index_suggestions_on_note_id'

  def up
    remove_concurrent_index_by_name TABLE, INDEX_NAME
  end

  def down
    add_concurrent_index TABLE, :note_id, name: INDEX_NAME
  end
end