Doctrine provides a simple way to purge a whole database keeping the schema
$purger = new ORMPurger($this->getEntityManager());
$purger->purge();
Is there a way to do so with Pomm ?
It would be specially useful to reset the test DB between each test scenarios without having to care about foreign keys.