Zkrácení tabulky pomocí Doctrine je stejně „jednoduché“ jako:
$connection = $entityManager->getConnection();
$platform = $connection->getDatabasePlatform();
$connection->executeUpdate($platform->getTruncateTableSQL('my_table', true /* whether to cascade */));
Ale musíte vědět, že MySQL nebude moci zkrátit žádnou tabulku, jakmile bude mít omezení cizího klíče.