The easiest way is to reset and recreate the database structure using these shell commands:
mysqldump -d dbname > structure.sql
mysqladmin drop dbname
mysqladmin create dbname
mysql dbname < structure.sql
Enter mysql credentials as needed e.g. -u root -psecret -h localhost
source
share