I have 2 tables: products and categories. They are both linked by a habtm association. I have a fixture to import all the data in each table but I dont know how to import the data in the categories_products table since that table has no model, so I cant use that code: f = Fixtures.new(Category.connection, # a database connection "categories", # table name Category, # model class File.join(File.dirname(__FILE__), "dev_data/categories")) f.insert_fixtures How can I do this? -- Posted via http://www.ruby-forum.com/.