class Rating < ActiveRecord::Base
  belongs_to :rateable, :polymorphic => true
  belongs_to :user
  has_one :rating_comment
  
  validates_presence_of :user
end
