Skip to content

Instantly share code, notes, and snippets.

@janedbal
Last active January 24, 2025 09:38
Show Gist options
  • Save janedbal/f4dea14a76e54ef6ea930234b1357d02 to your computer and use it in GitHub Desktop.
Save janedbal/f4dea14a76e54ef6ea930234b1357d02 to your computer and use it in GitHub Desktop.
How to migrate from doctrine/migrations to shipmonk/doctrine-two-phase-migrations
<?php
// see https://github.com/shipmonk-rnd/doctrine-two-phase-migrations/issues/97
// composer require nette/utils
require __DIR__ . '/../vendor/autoload.php';
/** @var SplFileInfo $file */
foreach (\Nette\Utils\Finder::findFiles('*.php')->in(__DIR__ . '/../migrations') as $file) {
$contents = \Nette\Utils\FileSystem::read($file->getPathname());
$newContents = str_replace([
'use Doctrine\Migrations\AbstractMigration;',
'extends AbstractMigration',
'public function up(Schema $schema): void',
'public function down(Schema $schema): void',
'$this->addSql',
], [
'use ShipMonk\Doctrine\Migration\Migration;',
'implements Migration',
'public function before(\Doctrine\DBAL\Connection $connection): void',
'public function after(\Doctrine\DBAL\Connection $connection): void',
'$connection->executeQuery',
],
$contents
);
\Nette\Utils\FileSystem::write($file->getPathname(), $newContents);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment