. */ namespace Doctrine\DBAL\Schema; /** * Table 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 TableDiff { /** * All added fields * * @var array(string=>ezcDbSchemaField) */ public $addedFields; /** * All changed fields * * @var array(string=>Column) */ public $changedFields = array(); /** * All removed fields * * @var array(string=>bool) */ public $removedFields = array(); /** * All added indexes * * @var array(string=>Index) */ public $addedIndexes = array(); /** * All changed indexes * * @var array(string=>Index) */ public $changedIndexes = array(); /** * All removed indexes * * @var array(string=>bool) */ public $removedIndexes = array(); /** * All added foreign key definitions * * @var array */ public $addedForeignKeys = array(); /** * All changed foreign keys * * @var array */ public $changedForeignKeys = array(); /** * All removed foreign keys * * @var array */ public $removedForeignKeys = array(); /** * Constructs an TableDiff object. * * @param array(string=>Column) $addedFields * @param array(string=>Column) $changedFields * @param array(string=>bool) $removedFields * @param array(string=>Index) $addedIndexes * @param array(string=>Index) $changedIndexes * @param array(string=>bool) $removedIndexes */ function __construct( $addedFields = array(), $changedFields = array(), $removedFields = array(), $addedIndexes = array(), $changedIndexes = array(), $removedIndexes = array() ) { $this->addedFields = $addedFields; $this->changedFields = $changedFields; $this->removedFields = $removedFields; $this->addedIndexes = $addedIndexes; $this->changedIndexes = $changedIndexes; $this->removedIndexes = $removedIndexes; } }