From 6c88de1ca2f23fa3ab68cf9b7c35ae952a70d40e Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" Date: Thu, 10 Mar 2005 07:31:59 +0000 Subject: [PATCH] Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no fractions of seconds Patch By Ed Sabol r=mkanat, a=justdave --- webtools/bugzilla/Bugzilla/DB/Schema/Pg.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/Bugzilla/DB/Schema/Pg.pm b/webtools/bugzilla/Bugzilla/DB/Schema/Pg.pm index 51caf02a31e4..23806aed17a7 100644 --- a/webtools/bugzilla/Bugzilla/DB/Schema/Pg.pm +++ b/webtools/bugzilla/Bugzilla/DB/Schema/Pg.pm @@ -60,7 +60,7 @@ sub _initialize { LONGBLOB => 'bytea', - DATETIME => 'timestamp', + DATETIME => 'timestamp(0) without time zone', };