summaryrefslogtreecommitdiff
path: root/db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb
blob: 8f944930807afc93fa90acbab92c6cb7ba0f1621 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddIndexToLabelsForTypeAndProject < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def change
    add_concurrent_index :labels, [:type, :project_id]
  end
end