How do I do a script/generate migration to create a join table for a has_and_belongs_to_many relationship?
The application runs on Rails 2.3.2, but I also have Rails 3.0.3 installed.
|
How do I do a The application runs on Rails 2.3.2, but I also have Rails 3.0.3 installed. |
|||
|
|
|
A
If you use the More information: Rails Docs UPDATED 2010-12-13 I've updated it to remove the id and timestamps... Basically |
|||||||||||||
|
|
Where:
and
for rails 3:
for rails < 3
(note the table name lists both join tables in alphabetical order) and then for both, you need to edit your generated migration so an id field is not created:
|
|||||
|
|
You should name the table the names of 2 models you want to connect by alphabetical order and put the two model id's in the table. Then connect each model to each other creating the associations in the model. Here's an example:
But this is not very flexible and you should think about using has_many :through |
|||
|
|