i’m confused about assocation table naming (for many to many asscoation)
now i have a model named ProductShow (in db it named product_shows)
also another model named Product (in db it named products)
now i want make a assocation table between them
this relationship between is
Product
has_and_belongs_to_many :product_shows
ProductShow
has_and_belongs_to_many :products
what’s the name for this assocation table?
also is there some way or tool can check this?
I usually prefer to implement this using bi-directional
has_manyassociation.