Commit 0ed8e7a3 authored by jwage's avatar jwage

[2.0] Fixing wrong function sig

parent 75e0c1ed
...@@ -581,14 +581,15 @@ abstract class AbstractSchemaManager ...@@ -581,14 +581,15 @@ abstract class AbstractSchemaManager
* Add a new table column * Add a new table column
* *
* @param string $name The name of the table * @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 * @param array $definition The definition of the column to add
* @return boolean $result * @return boolean $result
*/ */
public function addTableColumn($name, $definition) public function addTableColumn($name, $column, $definition)
{ {
$change = array( $change = array(
'add' => array( 'add' => array(
$name => $definition $column => $definition
) )
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment