/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Action
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Action/AddColumn.php (1540B)
column = $column;
}
/**
* Returns a new AddColumn object after assembling the given commands
*
* @param \Phinx\Db\Table\Table $table The table to add the column to
* @param string $columnName The column name
* @param mixed $type The column type
* @param mixed $options The column options
*
* @return \Phinx\Db\Action\AddColumn
*/
public static function build(Table $table, $columnName, $type = null, $options = [])
{
$column = new Column();
$column->setName($columnName);
$column->setType($type);
$column->setOptions($options); // map options to column methods
return new static($table, $column);
}
/**
* Returns the column to be added
*
* @return \Phinx\Db\Table\Column
*/
public function getColumn()
{
return $this->column;
}
}