You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ba...@apache.org on 2006/07/16 21:23:20 UTC

svn commit: r422505 - /incubator/roller/trunk/metadata/database/postgresql.properties

Author: bayard
Date: Sun Jul 16 12:23:19 2006
New Revision: 422505

URL: http://svn.apache.org/viewvc?rev=422505&view=rev
Log:
Just using timestamp gives errors in a fresh postgres install - things are much happier if you use 'timestamp with time zone'. Recorded in ROL-1187

Modified:
    incubator/roller/trunk/metadata/database/postgresql.properties

Modified: incubator/roller/trunk/metadata/database/postgresql.properties
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/metadata/database/postgresql.properties?rev=422505&r1=422504&r2=422505&view=diff
==============================================================================
--- incubator/roller/trunk/metadata/database/postgresql.properties (original)
+++ incubator/roller/trunk/metadata/database/postgresql.properties Sun Jul 16 12:23:19 2006
@@ -24,5 +24,5 @@
 INDEXSIZE=
 INDEXSIZE_LARGE=
 ADDL_FK_PARAMS=
-TIMESTAMP_SQL_TYPE_NULL=timestamp null
-TIMESTAMP_SQL_TYPE=timestamp
+TIMESTAMP_SQL_TYPE_NULL=timestamp with time zone null
+TIMESTAMP_SQL_TYPE=timestamp with time zone