how to ignore foreign key constraint in mysql code example
Example 1: mariadb disable foreign key checks
SET FOREIGN_KEY_CHECKS=0;
Example 2: mysql remove foreign key constraint
ALTER TABLE jobs DROP FOREIGN KEY constraint_name
SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE jobs DROP FOREIGN KEY constraint_name