Index: openacs-4/packages/monitoring/sql/postgresql/monitoring-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/monitoring/sql/postgresql/monitoring-create.sql,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/monitoring/sql/postgresql/monitoring-create.sql 19 Aug 2002 23:10:28 -0000 1.1 +++ openacs-4/packages/monitoring/sql/postgresql/monitoring-create.sql 17 May 2003 10:47:13 -0000 1.2 @@ -29,7 +29,7 @@ create table ad_monitoring_top ( top_id integer constraint ad_mntr_top_id_pk primary key, - timestamp timestamp default current_timestamp, + timestamp timestamptz default current_timestamp, -- denormalization: an indexable column for fast time comparisons. timehour numeric(2), -- the three load averages taken from uptime/top @@ -105,7 +105,7 @@ last_percent_estimated integer, --Do we actually want to run this? enabled_p boolean, - last_estimated timestamp + last_estimated timestamptz ); --Sequence for above table