Index: openacs-4/packages/new-portal/sql/oracle/upgrade/upgrade-jun-11-2002.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/new-portal/sql/oracle/upgrade/upgrade-jun-11-2002.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/new-portal/sql/oracle/upgrade/upgrade-jun-11-2002.sql 11 Jun 2002 17:21:26 -0000 1.1 @@ -0,0 +1,11 @@ +-- remove the 3 col with header layout from the system +-- the data in the portal_supported_regions table will cascade +declare + v_layout_id portal_layouts.layout_id%TYPE; +begin + select layout_id into v_layout_id from portal_layouts where name = '3-column w/ Header'; + + portal_layout.delete( layout_id => v_layout_id ); +end; + +