/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/RemoveColumn.php (1363B)
column = $column;
}
/**
* Creates a new RemoveColumn object after assembling the
* passed arguments.
*
* @param \Phinx\Db\Table\Table $table The table where the column is
* @param mixed $columnName The name of the column to drop
*
* @return \Phinx\Db\Action\RemoveColumn
*/
public static function build(Table $table, $columnName)
{
$column = new Column();
$column->setName($columnName);
return new static($table, $column);
}
/**
* Returns the column to be dropped
*
* @return \Phinx\Db\Table\Column
*/
public function getColumn()
{
return $this->column;
}
}