Well, here is the CREATE TABLE if that's what you mean:

CREATE TABLE "clientdata"."general_comments" (
  "commentid" INTEGER DEFAULT nextval('general_comments_seq'::regclass) NOT
NULL, 
  "commentvalue" VARCHAR(255) NOT NULL, 
  "personid" INTEGER, 
  "userid" INTEGER NOT NULL, 
  "commentdatetime" TIMESTAMP WITHOUT TIME ZONE DEFAULT
timezone('EST'::text, now()) NOT NULL, 
  "createddatetime" TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT now(), 
  "createddatetime2" TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT
'now'::text::timestamp without time zone, 
  CONSTRAINT "pk_general_comments_commentid" PRIMARY KEY("commentid"), 
) WITH OIDS;


-----Original Message-----
From: Kevin Grittner [mailto:kevin.gritt...@wicourts.gov] 
Sent: Thursday, February 24, 2011 5:06 PM
To: j...@blackskytech.com; pgsql-bugs@postgresql.org
Subject: Re: [BUGS] LOCALTIMESTAMP has wrong time zone

"Jonathan Brinkman" <j...@blackskytech.com> wrote:
 
> My default timestamps in my database all are +5 hours in the future
 
Can you copy paste actual statements and results?
 
-Kevin


-- 
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

Reply via email to