debian-mirror-gitlab/db/migrate/20200727082309_remove_index_chat_name_service_id.rb
2020-10-24 23:57:45 +05:30

18 lines
331 B
Ruby

# frozen_string_literal: true
class RemoveIndexChatNameServiceId < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
remove_concurrent_index :chat_names, :service_id
end
def down
add_concurrent_index :chat_names, :service_id
end
end