From d1403fd7268ccf96ab6e7d04506ea1b1802c7eb2 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 02 May 2008 03:35:00 -0400 Subject: [PATCH] - fixed #1485032 and updated MDB2 package+drivers --- program/lib/MDB2/Driver/Datatype/pgsql.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/lib/MDB2/Driver/Datatype/pgsql.php b/program/lib/MDB2/Driver/Datatype/pgsql.php index 8a7e3ff..c31c7d8 100644 --- a/program/lib/MDB2/Driver/Datatype/pgsql.php +++ b/program/lib/MDB2/Driver/Datatype/pgsql.php @@ -42,7 +42,7 @@ // | Author: Paul Cooper <pgc@ucecom.com> | // +----------------------------------------------------------------------+ // -// $Id: pgsql.php,v 1.88 2007/11/09 20:54:58 quipo Exp $ +// $Id: pgsql.php,v 1.91 2008/03/09 12:28:08 quipo Exp $ require_once 'MDB2/Driver/Datatype/Common.php'; @@ -217,8 +217,6 @@ $field['default'] = empty($field['notnull']) ? null : 0; } $default = ' DEFAULT '.$this->quote($field['default'], 'integer'); - } elseif (empty($field['notnull'])) { - $default = ' DEFAULT NULL'; } $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; @@ -453,6 +451,7 @@ break; case 'datetime': case 'timestamp': + case 'timestamptz': $type[] = 'timestamp'; $length = null; break; @@ -461,6 +460,7 @@ $length = null; break; case 'float': + case 'float4': case 'float8': case 'double': case 'real': -- Gitblit v1.9.1