summaryrefslogtreecommitdiff
path: root/db/migrate/20160819221631_add_index_to_note_discussion_id.rb
blob: b6e8bb18e7bf098c17d015323e37e4031457de2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddIndexToNoteDiscussionId < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def change
    add_concurrent_index :notes, :discussion_id
  end
end