Chatwoot/db/migrate/20161022073137_add_sender_to_conversation.rb

6 lines
136 B
Ruby
Raw Normal View History

class AddSenderToConversation < ActiveRecord::Migration[5.0]
def change
add_column :conversations, :sender_id, :integer
end
end