van Elsacker Frans <fve(at)atbib(dot)be> writes:
> All my tables (more than 100) have a field datumi of type date default
> today, as this example:
> CREATE TABLE tabel (
> ....
> datumi date DEFAULT 'today',
> ....
> );
This does not work anymore in PG 7.4. You need something like
datumi date DEFAULT CURRENT_DATE,
regards, tom lane