Ruby on Rails
Friday, September 30, 2016
I've got two tables in my Postgres database: categories
and products
.
I have a one to many relationship defined, one category can have many products.
I then created a reference and migrated the tables.
AddCategoryRefToProducts category:references
I have this in my models.
#product.rb belongs_to :category #category.rb has_many :products
I've fixed the _form to include the category id. But when I edit or update the form, the category id is not written to the product table.
I think I'm missing a step somewhere, not sure where.
Any suggestions?
Thanks,
Joe
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-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8c62b187-a01f-4da3-8051-8772215ebb3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment