From 0aa1056c35c6fa55050c387dda453bff017325e3 Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 13 Jun 2007 22:13:19 +0000 Subject: [PATCH] --- lib/Doctrine/Import/Pgsql.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Import/Pgsql.php b/lib/Doctrine/Import/Pgsql.php index 560b633f0..28c6bdcfd 100644 --- a/lib/Doctrine/Import/Pgsql.php +++ b/lib/Doctrine/Import/Pgsql.php @@ -155,10 +155,9 @@ class Doctrine_Import_Pgsql extends Doctrine_Import $columns = array(); foreach ($result as $key => $val) { if ($val['type'] === 'varchar') { - // need to add length to the type so we are compatible with - // Zend_Db_Adapter_Pdo_Pgsql! + // get length from varchar definition $length = preg_replace('~.*\(([0-9]*)\).*~', '$1', $val['complete_type']); - $val['type'] .= '(' . $length . ')'; + $val['length'] .= $length; } $decl = $this->conn->dataDict->getPortableDeclaration($val);