I'm trying to create a bidirectional many-to-many relationship between 2 entities, but I end up getting 2 relationship tables instead of 1. For example:

Code:
field set --fieldName categories --element Category --cardinality MANY_TO_MANY --class Problem
field set --fieldName problems --element Problem --cardinality MANY_TO_MANY --class Category
this will create 2 tables:
category_problems and problem_categories
BTW, very neat how roo knows to call it categories instead of categorys. Which library does it use for this?

Of course, I need that to be only 1 table and a bidirectional relationship... How do I specify this in roo?