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
Post a Comment