diaspora/db/migrate/20191018014242_remove_chat.rb
Dennis Schubert 862fa38f8b
Remove the JSXC/Prosody integration.
As per discussion on https://discourse.diasporafoundation.org/t/removing-diaspora-s-current-chat-integration/2718, nobody raised serious concerns or objections. Given future plans, we do not think having an unfinished implementation of something that likely will not get finished in the current form is worth it. So let's get rid of it.
2019-10-18 23:14:14 +02:00

10 lines
239 B
Ruby

# frozen_string_literal: true
class RemoveChat < ActiveRecord::Migration[5.1]
def up
remove_column :aspects, :chat_enabled
drop_table :chat_contacts
drop_table :chat_fragments
drop_table :chat_offline_messages
end
end