gitlab-org--gitlab-foss/db/migrate/20160920160832_add_index_to...

17 lines
322 B
Ruby
Raw Normal View History

# rubocop:disable RemoveIndex
2016-09-20 16:32:51 +00:00
class AddIndexToLabelsTitle < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
2016-09-20 16:32:51 +00:00
add_concurrent_index :labels, :title
end
def down
remove_index :labels, :title if index_exists? :labels, :title
end
2016-09-20 16:32:51 +00:00
end