Hello, I would link two spree model Product and Di...
# support
s
Hello, I would link two spree model Product and Discussion (created) with
has_and_belongs_to_many
but I would create a join table something like
spree_discussions_products.discussion_id
if possible, it is possible to specify an other name for the columns with
rails g migration CreateTableJoinSpreeProductSpreeDicussion ....
?
1
I found a way by adding the option
table_name:
into the migration
🙌 1