. */ namespace Doctrine\DBAL\Schema; use \Doctrine\DBAL\Platforms\AbstractPlatform; /** * Schema Diff * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @since 2.0 * @version $Revision$ * @author Benjamin Eberlei */ class SchemaDiff { /** * All added tables * * @var array(string=>ezcDbSchemaTable) */ public $newTables = array(); /** * All changed tables * * @var array(string=>ezcDbSchemaTableDiff) */ public $changedTables = array(); /** * All removed tables * * @var array(string=>Table) */ public $removedTables = array(); /** * @var array */ public $newSequences = array(); /** * @var array */ public $changedSequences = array(); /** * @var array */ public $removedSequences = array(); /** * Constructs an SchemaDiff object. * * @param array(string=>Table) $newTables * @param array(string=>TableDiff) $changedTables * @param array(string=>bool) $removedTables */ public function __construct( $newTables = array(), $changedTables = array(), $removedTables = array() ) { $this->newTables = $newTables; $this->changedTables = $changedTables; $this->removedTables = $removedTables; } /** * @param Schema $fromSchema * @param Schema $toSchema * @param AbstractPlatform $platform * @return array */ public function toSql(AbstractPlatform $platform) { $sql = array(); if ($platform->supportsSequences() == true) { foreach ($this->changedSequences AS $sequence) { $sql[] = $platform->getDropSequenceSql($sequence); $sql[] = $platform->getCreateSequenceSql($sequence); } foreach ($this->removedSequences AS $sequence) { $sql[] = $platform->getDropSequenceSql($sequence); } foreach ($this->newSequences AS $sequence) { $sql[] = $platform->getCreateSequenceSql($sequence); } } foreach ($this->newTables AS $table) { $sql = array_merge( $sql, $platform->getCreateTableSql($table, AbstractPlatform::CREATE_FOREIGNKEYS|AbstractPlatform::CREATE_INDEXES) ); } foreach ($this->removedTables AS $table) { $sql[] = $platform->getDropTableSql($table); } foreach ($this->changedTables AS $tableDiff) { $sql = array_merge($sql, $platform->getAlterTableSql($tableDiff)); } return $sql; } }