From 0ed8e7a34baa20458322260b5871f99f7e24d4fe Mon Sep 17 00:00:00 2001 From: jwage Date: Thu, 28 May 2009 02:45:51 +0000 Subject: [PATCH] [2.0] Fixing wrong function sig --- lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php b/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php index 7841008bf..0a7907851 100644 --- a/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php +++ b/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php @@ -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 ) );