summaryrefslogtreecommitdiff
path: root/db/migrate/20160920160832_add_index_to_labels_title.rb
blob: e6c87836d4e12c8c90a3f444d7d0527656cb9708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# rubocop:disable RemoveIndex
class AddIndexToLabelsTitle < ActiveRecord::Migration[4.2]
  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