The following setup will:
- Allow me to delete existing entries
- Prevent me from creating new entries in
products
This probably happens because entries gets created in products before categories_products. But I cannot create entries in categories_products before I know the product ID.
What would you do?
ALTER TABLE products
ADD CONSTRAINT FK_products
FOREIGN KEY (id) REFERENCES categories_products(product_id)
ON UPDATE CASCADE
ON DELETE CASCADE;
Tables
categories:
id, name
categories_products:
category_id, product_id
products:
id, name
Which order each entry gets created
- Create an entry in categories
- Create an entry in product
- Using the IDs from 1. and 2. to create a relationship between
categoriesandproducts
