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

20170210062829_add_index_to_labels_for_title_and_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c20f6a48ab041e3d7d73b3c4b54a4205f207066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rubocop:disable RemoveIndex
class AddIndexToLabelsForTitleAndProject < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

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

  def down
    remove_index :labels, :title if index_exists? :labels, :title
    remove_index :labels, :project_id if index_exists? :labels, :project_id
  end
end