Skip to content

Instantly share code, notes, and snippets.

@luniki
Created August 2, 2013 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luniki/6138786 to your computer and use it in GitHub Desktop.
Save luniki/6138786 to your computer and use it in GitHub Desktop.
Drop all tables
MYSQL="mysql -h HOST -u USERNAME -pPASSWORD -D DB_NAME"
$MYSQL -BNe "show tables" | awk '{print "set foreign_key_checks=0; drop table `" $1 "`;"}' | $MYSQL
unset MYSQL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment