summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Schema/Pg.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-10 16:31:59 +0100
committermkanat%kerio.com <>2005-03-10 16:31:59 +0100
commit71a8f7bf64dd0b494853634a727fe56d7ba79a48 (patch)
treec51ed7f442ba173e4352b42129f0fde92f43dde4 /Bugzilla/DB/Schema/Pg.pm
parent53a6fd9871b67ccd28fd9c9f8a740659afd2759d (diff)
downloadbugzilla-71a8f7bf64dd0b494853634a727fe56d7ba79a48.tar.gz
bugzilla-71a8f7bf64dd0b494853634a727fe56d7ba79a48.tar.xz
Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no fractions of seconds
Patch By Ed Sabol <edwardjsabol@iname.com> r=mkanat, a=justdave
Diffstat (limited to 'Bugzilla/DB/Schema/Pg.pm')
-rw-r--r--Bugzilla/DB/Schema/Pg.pm2
1 files changed, 1 insertions, 1 deletions
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',
};