debian-mirror-gitlab/db/migrate/20160920160832_add_index_to_labels_title.rb
2019-02-15 15:39:39 +05:30

17 lines
327 B
Ruby

# 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