remove deprecated column default
authorchriskl <chriskl>
Thu, 23 Oct 2003 08:32:20 +0000 (08:32 +0000)
committerchriskl <chriskl>
Thu, 23 Oct 2003 08:32:20 +0000 (08:32 +0000)
sql/reports-pgsql.sql

index ea9761df60786e10e1cedcc691cc7e600f0a38eb..0c4c6c5d81e88cbbfe2d23b282bb832b7138823c 100644 (file)
@@ -2,7 +2,7 @@
 -- 
 -- To run, type: psql template1 < reports-pgsql.sql
 --
--- $Id: reports-pgsql.sql,v 1.2 2003/05/07 01:01:05 chriskl Exp $
+-- $Id: reports-pgsql.sql,v 1.3 2003/10/23 08:32:20 chriskl Exp $
 
 CREATE DATABASE phppgadmin;
 
@@ -12,7 +12,7 @@ CREATE TABLE ppa_reports (
        report_id SERIAL,
        report_name varchar(255) NOT NULL,
        db_name varchar(255) NOT NULL,
-       date_created date DEFAULT 'now' NOT NULL,
+       date_created date DEFAULT NOW() NOT NULL,
        created_by varchar(255) NOT NULL,
        descr text,
        report_sql text NOT NULL,