how do i add rows to the associations table in a has_many_through relation

147 views
Skip to first unread message

fugee ohu

unread,
Oct 5, 2019, 6:19:05 PM10/5/19
to Ruby on Rails: Talk
how do i add rows to the associations table in a has_many_through relation

Ariel Juodziukynas

unread,
Oct 5, 2019, 11:34:09 PM10/5/19
to rubyonra...@googlegroups.com
Following the example models from the guide https://guides.rubyonrails.org/association_basics.html#the-has-many-through-association you would do something like:

@physician.appointments.create(patient: @patient)


El sáb., 5 oct. 2019 a las 19:19, fugee ohu (<fuge...@gmail.com>) escribió:
how do i add rows to the associations table in a has_many_through relation

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/47cab85e-cb43-483b-b16b-453880c44ca0%40googlegroups.com.

Ariel Juodziukynas

unread,
Oct 5, 2019, 11:37:35 PM10/5/19
to rubyonra...@googlegroups.com
I think you can actually do @physician.patients << @patient on some cases where your join model does not require anything else, but in that case it's more common to use a has_and_belongs_to_many association instead, if you use a has_many :through you usually want more data on the join model so you need to use the code on the previous response
Reply all
Reply to author
Forward
0 new messages