You are browsing a version that is no longer maintained.

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 Custom Integration.

Once you have your custom integration setup, you can modify it to look like the following:

1#!/usr/bin/env php <?php require_once __DIR__.'/vendor/autoload.php'; use Doctrine\DBAL\DriverManager; use Doctrine\Migrations\Configuration\Configuration; use Doctrine\Migrations\Configuration\Connection\ExistingConnection; use Doctrine\Migrations\Configuration\Migration\ExistingConfiguration; use Doctrine\Migrations\DependencyFactory; use Doctrine\Migrations\Metadata\Storage\TableMetadataStorageConfiguration; use Doctrine\Migrations\Tools\Console\Command; use Symfony\Component\Console\Application; $dbParams = [ 'dbname' => '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\CurrentCommand($dependencyFactory), new Command\DiffCommand($dependencyFactory), 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\UpToDateCommand($dependencyFactory), new Command\VersionCommand($dependencyFactory), )); $cli->run();
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

Next Chapter: Migrations Events

It is possible to use multiple entity managers or connections, this is a way to configure your application:

1#!/usr/bin/env php <?php require_once __DIR__.'/vendor/autoload.php'; use Doctrine\DBAL\DriverManager; use Doctrine\Migrations\Configuration\Configuration; use Doctrine\Migrations\Configuration\Configuration\ExistingConfiguration; use Doctrine\Migrations\Configuration\Connection\ConnectionRegistryConnection; use Doctrine\Migrations\DependencyFactory; use Doctrine\Migrations\Tools\Console\Command; use Symfony\Component\Console\Application; $connection1 = DriverManager::getConnection([...]); $connection2 = DriverManager::getConnection([...]); $connectionRegistry = new class( 'some_registry', ['foo' => $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();
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

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:

1<?php declare(strict_types=1); namespace <namespace>; use Doctrine\DBAL\Schema\Schema; use Doctrine\Migrations\AbstractMigration; final class <className> extends AbstractMigration { public function up(Schema $schema): void { <up> } }
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

Placeholders (words inside < >) are replaced with correct code upon generation. All possible wildcards are:

Placeholder Description
<namespace> Namespace of the class, e.g. App\Migrations
<className> Classname, e.g. Version20210212092730
<up> SQL for migrating up
<down> SQL for migrating down

The custom template needs to be configured.

1$configuration->setCustomTemplate(__DIR__ . '/custom_template.tpl');