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

20170204181513_add_index_to_labels_for_type_and_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31ef458c44f6ef3bf2ecbf7fd4269ec633b044ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddIndexToLabelsForTypeAndProject < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

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

  def down
    remove_index :labels, [:type, :project_id] if index_exists? :labels, [:type, :project_id]
  end
end