Has and Belongs to many Association :: has_and_belongs_to_many Association in Rails

 Has and Belong to Many Association Creation ::

rails g model Product name:string description:text price:decimal

rails g model Category name:string


Command to Create Join Table with Products and Categories in has_and_belongs_to_many_association ::

rails g migration CreateJoinTableProductsCategories products categories



Comments

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5