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