If u run `php symfony doctrine:migrate` the tash will so the migration_version table to the current version. That does not happen anymore. The value (version) does not change. Its in the Doctrine/Migration.php: https://github.com/FriendsOfSymfony1/doctrine1/blob/master/lib/Doctrine/Migration.php#L350 ``` $this->_connection->commit(); $this->setCurrentVersion($to); ``` Does not work anymore. I changed it to: ``` $this->setCurrentVersion($to); $this->_connection->commit(); ``` That works!