3
como adicionar registros a has_many: por meio de associação em trilhos
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 Como faço para adicionar ao Agentsmodelo para Customer? É este o melhor caminho? Customer.find(1).agents.create(customer_id: 1, house_id: 1) O procedimento …