1
0
mirror of synced 2024-12-13 06:46:03 +03:00

[2.0] Fixing wrong function sig

This commit is contained in:
jwage 2009-05-28 02:45:51 +00:00
parent 75e0c1ede7
commit 0ed8e7a34b

View File

@ -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
) )
); );