2017-04-05 18:53:57 -04:00
|
|
|
# rubocop:disable RemoveIndex
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddIndexToLabelsTitle < ActiveRecord::Migration[4.2]
|
2016-09-20 12:32:51 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2017-03-07 11:08:53 -05:00
|
|
|
def up
|
2016-09-20 12:32:51 -04:00
|
|
|
add_concurrent_index :labels, :title
|
|
|
|
end
|
2017-03-07 11:08:53 -05:00
|
|
|
|
|
|
|
def down
|
|
|
|
remove_index :labels, :title if index_exists? :labels, :title
|
|
|
|
end
|
2016-09-20 12:32:51 -04:00
|
|
|
end
|