Hi,
I'm wondering if it's possible to modify a Foreign Key constraint. Let's I've the following Foreign Key constraint defined for a
wrongs table:
FOREIGN KEY (member_id, level) REFERENCES scores (member_id, level) ON DELETE CASCADE,
And I would like to change it to:
FOREIGN KEY (member_id, level, subject) REFERENCES scores (member_id, level, subject) ON DELETE CASCADE,
Is it possible?
Thanks in anticipation
