Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190815093949_remove_index_notes_on_noteable_type.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 158c88e625860400025ee20c73e3d14d442e3841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

class RemoveIndexNotesOnNoteableType < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    remove_concurrent_index(*index_arguments)
  end

  def down
    add_concurrent_index(*index_arguments)
  end

  private

  def index_arguments
    [
      :notes,
      [:noteable_type],
      {
        name: 'index_notes_on_noteable_type'
      }
    ]
  end
end