Db::dropAllTables
Usage
void Db::dropAllTables()Description
Drop all tables within the database in proper order so as to not receive foreign key constraint errors.Examples
Drop All Tables
$this->db->dropAllTables();
echo "Database cleared of all tables.\n";