Renaud Grand
Renaud Grand
Hi! Really in need of that PR 👍
Hi! Got this after upgrading to DBAL 3.3.1 (from DBAL 2) MariaDB 10.5.12 Doctrine Migrations 3.4.1 I've got an empty `up()` migration generated. And a down migration regenerated no matter...
It definitely is, but I'm not sure the problem lies with DBAL directly. I started breakpointing the other day and noticed that in `DiffGenerator:95`, the `$fromSchema` var contains tables that...
OK so I tested all the releases of `doctrine/dbal` between 3.2.0 and 3.3.1... and the problem appears at 3.3.1. ``` composer require doctrine/dbal:3.3.0 binco do:mi:diff ... In NoChangesDetected.php line 13:...
I opened a new issue because that one was old and maybe out of sight. #5243
@fdiedler in the meantime you can try locking your dbal version to something that works. I did: `composer require doctrine/dbal:3.2.2` Does that work for you?
> @Pixelshaped It is strange, I do not have any reference to doctrine/dbal nor doctrine/orm in my composer.json > > ``` > "require": { > "php": ">=7.1.3", > "ext-ctype": "*",...
> @Pixelshaped I just added the doctrine/dbal and blocks to version 3.2.2 and it works when I do migrations:diff :) It is just strange that the reference is not explicitly...
Thank you I was already using this code from UX Autocomplete and I think it's the right move to make it part of Doctrine Bridge as this is a very...
We've got another issue with this PR. When we're calling `$this->addReference($referenceName, $entity);` it now calls `$class = $this->getRealClass(get_class($object));` which is problematic for us. Indeed, we have two EntityManagers configured. And...