/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Id
NameSizeModeActions
TableGenerator.php52470644editdlrm
TableGeneratorSchemaVisitor.php15380644editdlrm
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Id/TableGeneratorSchemaVisitor.php (1538B)
generatorTableName = $generatorTableName; } /** * {@inheritdoc} */ public function acceptSchema(Schema $schema) { $table = $schema->createTable($this->generatorTableName); $table->addColumn('sequence_name', 'string'); $table->addColumn('sequence_value', 'integer', ['default' => 1]); $table->addColumn('sequence_increment_by', 'integer', ['default' => 1]); } /** * {@inheritdoc} */ public function acceptTable(Table $table) { } /** * {@inheritdoc} */ public function acceptColumn(Table $table, Column $column) { } /** * {@inheritdoc} */ public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) { } /** * {@inheritdoc} */ public function acceptIndex(Table $table, Index $index) { } /** * {@inheritdoc} */ public function acceptSequence(Sequence $sequence) { } }