How can I delete table using Doctrine2 and Symfony2? I\'ve generated entities and updated schema, now I want to delete this structure.
You can do a raw sql.
For example in a Symfony2 controller:
$em = $this->getDoctrine()->getManager(); $sql = 'DROP TABLE hereYourTableName;'; $connection = $em->getConnection(); $stmt = $connection->prepare($sql); $stmt->execute(); $stmt->closeCursor();