Is there a way to generate a rails model with a many to many relationship predefined? I know how to add it to the active record after the fact but it would be nice to have it defined in the db migration and the active record model right off the bat.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Remember that you do not want an id for the join table, so make sure to add :id => false |t|
If you use rails
you will have two indexes, but what you want is
|
||||
|
|
|
Look this Creating a many to many relationship in Rails 3. I also recommend the book "Beginning Rails 3". |
||||
|
|
You can use this reference from the Rails Guides.Here is the link. Also you will need to manually create the join table for those models using a migration. e.g
|
|||||
|