getDoctrineSchemaManager()->listTableNames(); $droplist = implode(',', $droplist); DB::beginTransaction(); //turn off referential integrity DB::statement('SET FOREIGN_KEY_CHECKS = 0'); DB::statement("DROP TABLE $droplist"); //turn referential integrity back on DB::statement('SET FOREIGN_KEY_CHECKS = 1'); DB::commit(); $this->comment(PHP_EOL.'If no errors showed up, all tables were dropped'.PHP_EOL); } }