Custom Configuration ==================== It is possible to build a custom configuration where you manually build the ``Doctrine\Migrations\Configuration\Configuration`` instance instead of using YAML, XML, etc. In order to do this, you will need to setup a :ref:`Custom Integration `. Once you have your custom integration setup, you can modify it to look like the following: .. code-block:: php #!/usr/bin/env php 'migrations_docs_example', 'user' => 'root', 'password' => '', 'host' => 'localhost', 'driver' => 'pdo_mysql', ]; $connection = DriverManager::getConnection($dbParams); $configuration = new Configuration($connection); $configuration->addMigrationsDirectory('MyProject\Migrations', '/data/doctrine/migrations-docs-example/lib/MyProject/Migrations'); $configuration->setAllOrNothing(true); $configuration->setCheckDatabasePlatform(false); $storageConfiguration = new TableMetadataStorageConfiguration(); $storageConfiguration->setTableName('doctrine_migration_versions'); $configuration->setMetadataStorageConfiguration($storageConfiguration); $dependencyFactory = DependencyFactory::fromConnection( new ExistingConfiguration($configuration), new ExistingConnection($connection) ); $cli = new Application('Doctrine Migrations'); $cli->setCatchExceptions(true); $cli->addCommands(array( new Command\DumpSchemaCommand($dependencyFactory), new Command\ExecuteCommand($dependencyFactory), new Command\GenerateCommand($dependencyFactory), new Command\LatestCommand($dependencyFactory), new Command\ListCommand($dependencyFactory), new Command\MigrateCommand($dependencyFactory), new Command\RollupCommand($dependencyFactory), new Command\StatusCommand($dependencyFactory), new Command\SyncMetadataCommand($dependencyFactory), new Command\VersionCommand($dependencyFactory), )); $cli->run(); :ref:`Next Chapter: Migrations Events ` It is possible to use multiple entity managers or connections, this is a way to configure your application: .. code-block:: php #!/usr/bin/env php $connection1, 'bar' => $connection2], [], // entity managers 'foo', // default connection null, // default entity manager 'Doctrine\Persistence\Proxy' // proxy class ) extends AbstractManagerRegistry { // implement abstract methods here }; $configuration = new Configuration($connection); $configuration->addMigrationsDirectory('MyProject\Migrations', 'some path'); $configurationLoader = new ExistingConfiguration($configuration); $connectionLoader = ConnectionRegistryConnection::withSimpleDefault($connectionRegistry); $dependencyFactory = DependencyFactory::fromConnection( $configurationLoader, $connectionLoader ); $cli = new Application('Doctrine Migrations'); $cli->setCatchExceptions(true); $cli->addCommands(array( new Command\MigrateCommand($dependencyFactory), // more commands here )); $cli->run(); With this configuration you can use the ``--conn`` parameter to specify a connection that will be used for running migrations. If the parameter is not passed, it will fallback to the one passed in the configuration, and if that is also not provided it will fallback to the default connection name specified when creating the connection registry. Custom migration template ------------------------- When the default generated migrations do not suit your needs, you may provide a custom migration template that will be used to generate future migrations. For example, if you don't need a ``down`` migration your template could look like this: .. code-block:: php ; use Doctrine\DBAL\Schema\Schema; use Doctrine\Migrations\AbstractMigration; final class extends AbstractMigration { public function up(Schema $schema): void { } } Placeholders (words inside ``< >``) are replaced with correct code upon generation. All possible wildcards are: =============== =============================================== Placeholder Description --------------- ----------------------------------------------- ```` Namespace of the class, e.g. ``App\Migrations`` ```` Classname, e.g. ``Version20210212092730`` ```` SQL for migrating up ```` SQL for migrating down =============== =============================================== The custom template needs to be configured. .. code-block:: php $configuration->setCustomTemplate(__DIR__ . '/custom_template.tpl');