class Agents << ActiveRecord::Base belongs_to :customer belongs_to :house end class Customer << ActiveRecord::Base has_many :agents has_many :houses, through: :agents end class House << ActiveRecord::Base has_many :agents has_many :customers, through: :agents end Wie füge ich dem...
94
Hinzufügen von Datensätzen zu has_many: durch Zuordnung in Schienen