If I want a column to have a default TIMESTAMP of 'now' but not in PSTtimezone but GMT,is the best way of doing it the following:
change_time TIMESTAMP DEFAULT now() AT TIME ZONE 'GMT' NOT NULL,
Richard