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