3
come aggiungere record a has_many: tramite associazione in rails
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 Come aggiungo al Agentsmodello perCustomer ? È questo il modo migliore? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Quanto sopra funziona bene …