Re: example of insert timestamp - Mailing list pgsql-admin

From Jamie A Lawrence
Subject Re: example of insert timestamp
Date
Msg-id DCB7ACF9-D27A-4A54-A4ED-7C58031DA52D@jal.org
Whole thread Raw
In response to Re: example of insert timestamp  ("Gregory Williamson" <Gregory.Williamson@digitalglobe.com>)
Responses Re: example of insert timestamp  ("Aaron Bono" <aaron.bono@aranya.com>)
List pgsql-admin
On Feb 25, 2008, at 8:19 PM, Gregory Williamson wrote:
>
> Perhaps, make the column so it has a default value of now, land then
> insert without specifying the timestamp column so it gets the
> default value:
>
> create table foo (q_i_time timestamp with time zone not null default
> now(), someval int);
>

This is what I do. For many tables, I also add a mod_time column with
an ON UPDATE trigger similar to the one previously posted. Even when
not needed for the table itself, in development, it can be very handy
to compare dodgy inserts/updates with commit logs when bug hunting...

-j

pgsql-admin by date:

Previous
From: "Gregory Williamson"
Date:
Subject: Re: example of insert timestamp
Next
From: "Aaron Bono"
Date:
Subject: Re: example of insert timestamp