chat_message.rb 169 Bytes
class ChatMessage < ActiveRecord::Base
  attr_accessible :body, :from, :to

  belongs_to :to, :class_name => 'Profile'
  belongs_to :from, :class_name => 'Profile'

end