/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Plan
NameSizeModeActions
Solver/-0755rm
AlterTable.php13660644editdlrm
Intent.php11470644editdlrm
NewTable.php19520644editdlrm
Plan.php166380644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Plan/NewTable.php (1952B)
table = $table; } /** * Adds a column to the collection * * @param \Phinx\Db\Table\Column $column The column description * @return void */ public function addColumn(Column $column): void { $this->columns[] = $column; } /** * Adds an index to the collection * * @param \Phinx\Db\Table\Index $index The index description * @return void */ public function addIndex(Index $index): void { $this->indexes[] = $index; } /** * Returns the table object associated to this collection * * @return \Phinx\Db\Table\Table */ public function getTable(): Table { return $this->table; } /** * Returns the columns collection * * @return \Phinx\Db\Table\Column[] */ public function getColumns(): array { return $this->columns; } /** * Returns the indexes collection * * @return \Phinx\Db\Table\Index[] */ public function getIndexes(): array { return $this->indexes; } }