3
як додати записи до has_many: через об'єднання в рейки
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 Як додати до Agentsмоделі для Customer? Це найкращий спосіб? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Вище працює чудово з консолі, однак, …