summaryrefslogtreecommitdiff
path: root/db/migrate/20181126153547_remove_notes_index_on_updated_at.rb
blob: d7ca46b50e44c2b76b886c44786f507353ee6692 (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
30
31
32
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class RemoveNotesIndexOnUpdatedAt < ActiveRecord::Migration[5.0]
  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,
      [:updated_at],
      {
        name: 'index_notes_on_updated_at'
      }
    ]
  end
end