debian-mirror-gitlab/db/migrate/20220107165036_remove_note_id_index.rb
2022-03-02 08:16:31 +05:30

17 lines
338 B
Ruby

# 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