/home/techb158/ileadtechnology.com/SSM/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema
NameSizeModeActions
Synchronizer/-0755rm
Visitor/-0755rm
AbstractAsset.php57010644editdlrm
AbstractSchemaManager.php297070644editdlrm
Column.php84750644editdlrm
ColumnDiff.php11980644editdlrm
Comparator.php195810644editdlrm
Constraint.php9930644editdlrm
DB2SchemaManager.php73600644editdlrm
DrizzleSchemaManager.php31210644editdlrm
ForeignKeyConstraint.php107880644editdlrm
Identifier.php6660644editdlrm
Index.php88240644editdlrm
MySqlSchemaManager.php113210644editdlrm
OracleSchemaManager.php124570644editdlrm
PostgreSqlSchemaManager.php160890644editdlrm
Schema.php123060644editdlrm
SchemaConfig.php19040644editdlrm
SchemaDiff.php43090644editdlrm
SchemaException.php54690644editdlrm
Sequence.php30240644editdlrm
SQLAnywhereSchemaManager.php73960644editdlrm
SqliteSchemaManager.php166200644editdlrm
SQLServerSchemaManager.php109590644editdlrm
Table.php241150644editdlrm
TableDiff.php31920644editdlrm
View.php4570644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/TableDiff.php (3192B)
name = $tableName; $this->addedColumns = $addedColumns; $this->changedColumns = $changedColumns; $this->removedColumns = $removedColumns; $this->addedIndexes = $addedIndexes; $this->changedIndexes = $changedIndexes; $this->removedIndexes = $removedIndexes; $this->fromTable = $fromTable; } /** * @param AbstractPlatform $platform The platform to use for retrieving this table diff's name. * * @return Identifier */ public function getName(AbstractPlatform $platform) { return new Identifier( $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name ); } /** * @return Identifier|false */ public function getNewName() { if ($this->newName === false) { return false; } return new Identifier($this->newName); } }