python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to handle migrations with multiple entity managers in DoctrineMigrationsBundle 3
On doctrine/doctrine-migrations-bundle 2.* this was relatively simple - use the --em option (and use ContainerAwareInterface to skip any migrations from a different em/connection).
Now (on doctrine/do...
Matt Bennett
Votes: 0
Answers: 1
Symfony doctrine:execute can't find Doctrine migrations in custom folder
We've set our configuration file for doctrine migrations as the following:
doctrine_migrations:
migrations_paths:
'App\Migrations': "%kernel.project_dir%/src/Migrations"
Our mig...
sbkevin
Votes: 0
Answers: 1
Doctrine migrations always generates empty up() and down() migration with collate change to 'utf8mb4_unicode_ci'
When I run php bin/console doctrine:migrations:diff I always get the following newly generated migration:
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Sc...
Mateusz K.
Votes: 0
Answers: 3
Configurate doctrine_migration_versions table in custom schema instead of public
Is there a way for the automatic doctrine_migration_versionsto be stored in a schema other than public?
Right now I have a schema called inschrijving and all the entities properties are stored as tabl...
Ari
Votes: 0
Answers: 1