From 71a8f7bf64dd0b494853634a727fe56d7ba79a48 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Thu, 10 Mar 2005 15:31:59 +0000 Subject: Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no fractions of seconds Patch By Ed Sabol r=mkanat, a=justdave --- Bugzilla/DB/Schema/Pg.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/DB') diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm index 51caf02a3..23806aed1 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', }; -- cgit v1.2.3-24-g4f1b