/home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema
NameSizeModeActions
Synchronizer/-0755rm
Visitor/-0755rm
AbstractAsset.php57020644editdlrm
AbstractSchemaManager.php301730644editdlrm
Column.php84850644editdlrm
ColumnDiff.php12320644editdlrm
Comparator.php199210644editdlrm
Constraint.php9930644editdlrm
DB2SchemaManager.php71460644editdlrm
DrizzleSchemaManager.php31220644editdlrm
ForeignKeyConstraint.php108300644editdlrm
Identifier.php6660644editdlrm
Index.php89510644editdlrm
MySqlSchemaManager.php114630644editdlrm
OracleSchemaManager.php126030644editdlrm
PostgreSqlSchemaManager.php165380644editdlrm
Schema.php118440644editdlrm
SchemaConfig.php19040644editdlrm
SchemaDiff.php43110644editdlrm
SchemaException.php51280644editdlrm
Sequence.php29520644editdlrm
SQLAnywhereSchemaManager.php73730644editdlrm
SqliteSchemaManager.php168200644editdlrm
SQLServerSchemaManager.php107180644editdlrm
Table.php240030644editdlrm
TableDiff.php31850644editdlrm
View.php4570644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Sequence.php (2952B)
_setName($name); $this->setAllocationSize($allocationSize); $this->setInitialValue($initialValue); $this->cache = $cache; } /** * @return int */ public function getAllocationSize() { return $this->allocationSize; } /** * @return int */ public function getInitialValue() { return $this->initialValue; } /** * @return int|null */ public function getCache() { return $this->cache; } /** * @param int $allocationSize * * @return Sequence */ public function setAllocationSize($allocationSize) { $this->allocationSize = (int) $allocationSize ?: 1; return $this; } /** * @param int $initialValue * * @return Sequence */ public function setInitialValue($initialValue) { $this->initialValue = (int) $initialValue ?: 1; return $this; } /** * @param int $cache * * @return Sequence */ public function setCache($cache) { $this->cache = $cache; return $this; } /** * Checks if this sequence is an autoincrement sequence for a given table. * * This is used inside the comparator to not report sequences as missing, * when the "from" schema implicitly creates the sequences. * * @return bool */ public function isAutoIncrementsFor(Table $table) { $primaryKey = $table->getPrimaryKey(); if ($primaryKey === null) { return false; } $pkColumns = $primaryKey->getColumns(); if (count($pkColumns) !== 1) { return false; } $column = $table->getColumn($pkColumns[0]); if (! $column->getAutoincrement()) { return false; } $sequenceName = $this->getShortestName($table->getNamespaceName()); $tableName = $table->getShortestName($table->getNamespaceName()); $tableSequenceName = sprintf('%s_%s_seq', $tableName, $column->getShortestName($table->getNamespaceName())); return $tableSequenceName === $sequenceName; } /** * @return void */ public function visit(Visitor $visitor) { $visitor->acceptSequence($this); } }