php8 + mysql8 при выполнении миграции (bin/console doctrine:migrations:migrate) получаю ошибку "There is no active transaction", сама миграция выполняется успешно, может кто сталкивался?
php8 + mysql8 при выполнении миграции (bin/console doctrine:migrations:migrate) получаю ошибку "There is no active transaction", сама миграция выполняется успешно, может кто сталкивался?
As of PHP 8, PDO::commit() and rollBack() will throw a There is no active transaction PDOException if the transaction had been autocommitted, as MySQL will do whenever a schema change is made. Previously they would fail silently.