David Buchmann
David Buchmann
i am a bit afraid of testing with a dev version. could we just remove slim from require-dev and add it with composer commands in the github ci for some...
slim has tagged a release. can you please rebase this branch onto 1.x and push again? then we can see what problems remain.
hm, tricky :-/ maybe we should remove these optional integrations from require-dev and only require them for specific test runs. we could tag the tests about the integrations and only...
thanks for the input on doctrine slack @sbuerk for symfony, i think we need to extend PostgreSQLPlatform and overwrite getCreateTableSQL with a custom platform that adds the notify sql bit....
> Otherwise, the application won't be able to use their own platforms anymore. thats what i am worying about too. using a dedicated connection for messenger would lead to very...
> reported that a new migration DROP TABLE doctrine_migration_versions was added. thanks for reporting this @thePanz that sounds like the https://github.com/doctrine/DoctrineMigrationsBundle has the same problem with dbal as we see...
extension points on the SchemaTool sounds like a good idea to me. the important part is to have events or register something on the SchemaTool and not require to use...
thanks for the note. we used to interact with the [Doctrine\DBAL\Event\SchemaCreateTableEventArgs event](https://github.com/symfony/symfony/blob/73f8713e143c64dc5f045dcdee7d5e893cccfcd8/src/Symfony/Bridge/Doctrine/SchemaListener/MessengerTransportDoctrineSchemaListener.php#L47). should we add such an event in the SchemaTool of the orm? if i understand correctly, looking at...
@greg0ire would it make sense if i add something to https://github.com/doctrine/orm/blob/3.1.x/src/Tools/Event/GenerateSchemaTableEventArgs.php to allow adding additional sql there? or should we do another event to allow to add sql when the...
the operation is to add a "trigger": https://github.com/symfony/symfony/blob/73f8713e143c64dc5f045dcdee7d5e893cccfcd8/src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/PostgreSqlConnection.php#L95 i don't know how exactly it worked with dbal3 - i think that the extra sql was also added when doing the...