]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 285551: Schema::Pg should explictly set "timestamp without time zone" and no...
authormkanat%kerio.com <>
Thu, 10 Mar 2005 15:31:59 +0000 (15:31 +0000)
committermkanat%kerio.com <>
Thu, 10 Mar 2005 15:31:59 +0000 (15:31 +0000)
Patch By Ed Sabol <edwardjsabol@iname.com> r=mkanat, a=justdave

Bugzilla/DB/Schema/Pg.pm

index 51caf02a31e494f91f6337fcba9dd8ff1a121da5..23806aed17a7c406a6efd5f9cd07a61886e7b2a3 100644 (file)
@@ -60,7 +60,7 @@ sub _initialize {
 
         LONGBLOB =>     'bytea',
 
-        DATETIME =>     'timestamp',
+        DATETIME =>     'timestamp(0) without time zone',
 
     };