summaryrefslogtreecommitdiff
path: root/db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb
blob: f922ed209aa3f2618f17bf02bcc90650f5d4f847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class AddIndexToLabelsForTitleAndProject < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def change
    add_concurrent_index :labels, :title
    add_concurrent_index :labels, :project_id
  end
end