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.
ユーザー用のモデル、投稿用のモデル、および評価用のモデルを持つサイトを開発しています。各提出物は、ユーザーごとに 1 つの評価のみを持つことができます。私の質問は、モデルでこれをどのように設定すればよいですか?
class Submission has_many :ratings validates_uniqueness_of :rating, :scope => :user_id end