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

20191018014242_remove_chat.rb « migrate « db - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6f1b3d9dafdcb45d3c322204ce14457f22ded24 (plain)
1
2
3
4
5
6
7
8
9
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