20140820173129_create_chat_messages.rb 254 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class CreateChatMessages < ActiveRecord::Migration def up create_table :chat_messages do |t| t.integer :to_id t.integer :from_id t.string :body t.timestamps end end def down drop_table :chat_messages end end