3
jak dodawać rekordy do has_many: poprzez asocjacje w szynach
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 Jak dodać do Agentsmodelu Customer? Czy to najlepszy sposób? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Powyższe działa dobrze z konsoli, jednak …