From: mkanat%kerio.com <> Date: Thu, 10 Mar 2005 15:31:59 +0000 (+0000) Subject: Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no... X-Git-Tag: bugzilla-2.19.3~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71a8f7bf64dd0b494853634a727fe56d7ba79a48;p=thirdparty%2Fbugzilla.git Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no fractions of seconds Patch By Ed Sabol r=mkanat, a=justdave --- diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm index 51caf02a31..23806aed17 100644 --- a/Bugzilla/DB/Schema/Pg.pm +++ b/Bugzilla/DB/Schema/Pg.pm @@ -60,7 +60,7 @@ sub _initialize { LONGBLOB => 'bytea', - DATETIME => 'timestamp', + DATETIME => 'timestamp(0) without time zone', };