Index: openacs-4/packages/acs-events/sql/oracle/acs-events-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-events/sql/oracle/acs-events-create.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-events/sql/oracle/acs-events-create.sql 13 Jul 2001 02:00:30 -0000 1.1 +++ openacs-4/packages/acs-events/sql/oracle/acs-events-create.sql 9 Feb 2002 02:33:35 -0000 1.2 @@ -334,6 +334,7 @@ event_id in acs_events.event_id%TYPE default null, name in acs_events.name%TYPE default null, description in acs_events.description%TYPE default null, + html_p in acs_events.html_p%TYPE default null, timespan_id in acs_events.timespan_id%TYPE default null, activity_id in acs_events.activity_id%TYPE default null, recurrence_id in acs_events.recurrence_id%TYPE default null, @@ -531,6 +532,7 @@ event_id in acs_events.event_id%TYPE default null, name in acs_events.name%TYPE default null, description in acs_events.description%TYPE default null, + html_p in acs_events.html_p%TYPE default null, timespan_id in acs_events.timespan_id%TYPE default null, activity_id in acs_events.activity_id%TYPE default null, recurrence_id in acs_events.recurrence_id%TYPE default null, @@ -553,9 +555,9 @@ ); insert into acs_events - (event_id, name, description, activity_id, timespan_id, recurrence_id) + (event_id, name, description, html_p, activity_id, timespan_id, recurrence_id) values - (new_event_id, name, description, activity_id, timespan_id, recurrence_id); + (new_event_id, name, description, html_p, activity_id, timespan_id, recurrence_id); return new_event_id; end new;