mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-07 22:33:56 -05:00
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.
11 lines
239 B
Ruby
11 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
|