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

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

  NOTES_TRIGRAM_INDEX_NAME = 'index_notes_on_note_trigram'

  def up
    remove_concurrent_index_by_name(:notes, NOTES_TRIGRAM_INDEX_NAME)
  end

  def down
    add_concurrent_index :notes, :note, name: NOTES_TRIGRAM_INDEX_NAME, using: :gin, opclass: { content: :gin_trgm_ops }
  end
end