私は持っている:
class Student < ActiveRecord::Base
#attr_accessible :lastname, :name
has_many :together
has_many :teachers, :through => :together
end
class Teacher < ActiveRecord::Base
#attr_accessible :lastname, :name
has_many :together
has_many :students, :through => :together
end
class Together < ActiveRecord::Base
#attr_accessible :summary
belongs_to :student
belongs_to :teacher
end
私は次のようなことをしたい:
Student.find(1).together.summary
結合テーブルの「概要」列のデータにアクセスしたい...