How to use cascade with a multi-column foreign key?
When using
I have a table with a composite primary key:
and a table referencing that table with a composite foreign key:
How do I activate cascade on delete in this scenario?
references I can tell a foreign key to cascade on a delete easily. However:I have a table with a composite primary key:
and a table referencing that table with a composite foreign key:
How do I activate cascade on delete in this scenario?