I have two tables:
Users and Groups
a User has_many groups and a group, belongs_to a user:
u = User.last
u.groups
Supposed I wanted a second list of different groups, for some strange reason. Where once again a User has may groups (called other_group in this example) and a group belongs to a User.
u = User.last
u.other_groups
How do I associate two models in this relationship, Twice using Active Record?