Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDennis Schubert <mail@dennis-schubert.de>2019-10-19 00:14:14 +0300
committerDennis Schubert <mail@dennis-schubert.de>2019-10-19 00:14:14 +0300
commit862fa38f8b4b4a2e96f1919807f20c33b5399d9e (patch)
tree6e87b49f4d96125aa3f2996d5fce7f7d974b5878 /db
parent995f3394a86ae1df2814d8242771d44d86bf4bc0 (diff)
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.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20191018014242_remove_chat.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20191018014242_remove_chat.rb b/db/migrate/20191018014242_remove_chat.rb
new file mode 100644
index 000000000..f6f1b3d9d
--- /dev/null
+++ b/db/migrate/20191018014242_remove_chat.rb
@@ -0,0 +1,10 @@
+# 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