class User < ActiveRecord::Base has_and_belongs_to_many :products_of_interest, :class_name => "Product" has_and_belongs_to_many :brands_of_interest, :class_name => "Brand" end class Deal < ActiveRecord::Base belongs_to :brand belongs_to :product end