I have the following models:
User (id, name, network_id)
Network(id, title)
What kind of Rails model assoc do I need to add so that I can do:
@user.network.title
@network.users
Thanks
|
I have the following models:
What kind of Rails model assoc do I need to add so that I can do:
Thanks
| |||
|
feedback
|
|
so network has_may users and user belongs_to network. Just add a network_id to users table if you still haven't and also since it's a foreign_key is worth indexing it.
In the network model do
in the user model:
| |||||||||
feedback
|
|
According to your database-setup, you just have to add the following lines to your models:
In case you have a setup without network_id, you should go with daniels answer. | ||||
|
feedback
|