tags:

views:

121

answers:

1

How rebuild table 'products' with actually field 'category_id', when I use Tree Behavior, to for one products belongs to more than one category?

+1  A: 

You would have to use a habtm join with a categories_products table instead of a single category_id in the product table

products               categories_products            categories
-------------          -------------------------      ---------------------
id | name| ..          id|category_id|product_id      id|name|parent_id|...
harpax