I am trying to temporarily disable foreign key checks, but have not been successful.
```
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `menu_items`;
CREATE TABLE `menu_items` (
...
SET FOREIGN_KEY_CHECKS = 1;
```
It keeps telling me that I cannot delete or update a parent row. Any help would be appreciated!