私はそれらについてstudent
多くcomment
の s を残すことができる を持っています:
class Student < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :student
end
ただし、コメントは対象の生徒に属している必要がありますが、コメントを作成した生徒にも属している必要があります。つまり、コメントは同時に 2 人の異なる学生に属している必要があります。
これはどのように達成できますか?