chat_message.rb 169 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 class ChatMessage < ActiveRecord::Base attr_accessible :body, :from, :to belongs_to :to, :class_name => 'Profile' belongs_to :from, :class_name => 'Profile' end