Re: [Rails] how do i add rows to the associations table in a has_many_through relation

2019-10-05 Thread Ariel Juodziukynas
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

Re: [Rails] how do i add rows to the associations table in a has_many_through relation

2019-10-05 Thread Ariel Juodziukynas
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 () escribió: > how do i add rows to the

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

2019-10-05 Thread fugee ohu
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