fabiang/doctrine-migrations-liquibase

Generate Liquibase ChangeLog from Doctrine Entities

v2.4.0 2024-01-24 12:47 UTC

This package is auto-updated.

Last update: 2024-04-24 13:23:00 UTC


README

Generate Liquibase ChangeLog from Doctrine Entities.

Latest Stable Version License PHP Version Require Continuous Integration

API Usage

/** @var Doctrine\ORM\EntityManager $em */
$em = ...; // Retrieve Doctrine EntityManager as usual in your environment.

// Create a Liquibase SchemaTool with EntityManager
$schemaTool = new LiquibaseSchemaTool($this->em);

// Create a changelog that can be used on an empty database to build from scratch.
/** @var \DOMDocument $changeLog */
$changeLog = $schemaTool->changeLog()->getResult();
echo $changeLog->saveXML();

// Or create a diff changelog that can be used on current database to upgrade it.
/** @var \DOMDocument $diffChangeLog */
$diffChangeLog = $schemaTool->diffChangeLog()->getResult();
echo $diffChangeLog->saveXML();