> w/ default set to 'now', I thought postgres would fill in time - not > so?
Try now()
CREATE TABLE users ( creation_date timestamp DEFAULT 'now()' NOT NULL);
Jeff