summaryrefslogtreecommitdiff
path: root/db/migrate/20160920160832_add_index_to_labels_title.rb
blob: 19f7b1076a7bece2aad21f925738ebf310373bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddIndexToLabelsTitle < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :labels, :title
  end

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