From: Junkone Date: 2007-12-07T09:39:59+09:00 Subject: help with has_and_belongs_to_many class Trade < ActiveRecord::Base has_and_belongs_to_many :tags class Tag < ActiveRecord::Base set_table_name "tags" has_and_belongs_to_many :trades end how to i add records to the table tags_trades using active rcord. i dont have a model for tags_trades becaues the docs states that i dont need one. thanks in advance.