2017-08-17 22:00:37 +05:30
|
|
|
# rubocop:disable RemoveIndex
|
2016-11-03 12:29:30 +05:30
|
|
|
class AddIndexToLabelsTitle < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def up
|
2016-11-03 12:29:30 +05:30
|
|
|
add_concurrent_index :labels, :title
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
def down
|
|
|
|
remove_index :labels, :title if index_exists? :labels, :title
|
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|