Start your All-Access Pass to unlock this challenge
I've just used make:entity to build a ManyToMany relationship between Product and Distributor and updated the DB schema. How will this look in the database?
make:entity
Product
Distributor
The product table will have a distributor_id column and the distributor table will have a product_id column.
product
distributor_id
distributor
product_id
A new product_distributor table will be created in the database... even though there is no ProductDistributor entity.
product_distributor
ProductDistributor
The product table will have a distributors foreign key array column.
distributors