I'm developing a site that will have a model for users, a model for submissions, and a model for ratings. Each submission may have only one rating per user. My question is how should I set this up in my models?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted
class Submission
  has_many :ratings
  validates_uniqueness_of :rating, :scope => :user_id
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.