PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Utilizzo dell'ora corrente in UTC come valore predefinito in PostgreSQL

Non è nemmeno necessaria una funzione. Metti semplicemente le parentesi attorno all'espressione predefinita:

create temporary table test(
    id int, 
    ts timestamp without time zone default (now() at time zone 'utc')
);