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

class DropNotesNoteTrigramIndex < Gitlab::Database::Migration[2.0]
  INDEX_NAME = 'index_notes_on_note_gin_trigram'

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :notes, INDEX_NAME
  end

  def down
    # no-op
    # we never want to add this index back since it doesn't exist in production
    # we are only using this migration to cleanup other environments where this index does exist
  end
end