[2.0] Fixing wrong function sig
This commit is contained in:
parent
75e0c1ede7
commit
0ed8e7a34b
1 changed files with 3 additions and 2 deletions
|
@ -581,14 +581,15 @@ abstract class AbstractSchemaManager
|
|||
* Add a new table column
|
||||
*
|
||||
* @param string $name The name of the table
|
||||
* @param string $column The name of the column to add
|
||||
* @param array $definition The definition of the column to add
|
||||
* @return boolean $result
|
||||
*/
|
||||
public function addTableColumn($name, $definition)
|
||||
public function addTableColumn($name, $column, $definition)
|
||||
{
|
||||
$change = array(
|
||||
'add' => array(
|
||||
$name => $definition
|
||||
$column => $definition
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue