Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个具有用户模型、提交模型和评级模型的站点。每个提交的每个用户可能只有一个评分。我的问题是我应该如何在我的模型中设置它?
class Submission has_many :ratings validates_uniqueness_of :rating, :scope => :user_id end