about summary refs log tree commit diff
path: root/db/migrate/20200925035221_drop_conversations_public.rb
blob: e09f6014a98db852dc7abcb913141653d8c18af8 (plain) (blame)
1
2
3
4
5
6
7
class DropConversationsPublic < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      remove_column :conversations, :public
    end
  end
end