Skip to content

Instantly share code, notes, and snippets.

@danieledangeli
Created November 26, 2013 10:03
Show Gist options
  • Save danieledangeli/7656004 to your computer and use it in GitHub Desktop.
Save danieledangeli/7656004 to your computer and use it in GitHub Desktop.
Force drop table in mysql
SET foreign_key_checks = 0;
drop table TABLE_NAME
SET foreign_key_checks = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment