From ac88e649405f9f6f399df8602c1dddb8a3c68977 Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 30 Jul 2007 21:30:39 +0000 Subject: [PATCH] --- lib/Doctrine/Table.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 89a0fb718..fe74b1cc7 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -701,11 +701,11 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable if ($length == null && - $type === 'string' || - $type === 'clob' || - $type === 'integer' || - $type === 'blob' || - $type === 'gzip') { + ($type === 'string' || + $type === 'clob' || + $type === 'integer' || + $type === 'blob' || + $type === 'gzip')) { $length = 2147483647; }