Try doing an alter table drop constraint on the foreign key to remove it and then do an alter table xx add constraint forceign key(col) references tablea on delete cascade to readd it with the cascading delete.

Hope this helps.