What is MySQL’s default ON DELETE behavior?
Yes, it is correct: NO ACTION: […] InnoDB rejects the delete or update operation for the parent table. RESTRICT: Rejects the delete or update operation for the parent table. Specifying RESTRICT (or NO ACTION) is the same as omitting the ON DELETE or ON UPDATE clause. […] Apparently NO ACTION and RESTRICT are synonymous. Additionally, … Read more