Index: openacs-4/packages/dotlrn/sql/oracle/dotlrn-init.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/sql/oracle/dotlrn-init.sql,v diff -u -r1.18 -r1.19 --- openacs-4/packages/dotlrn/sql/oracle/dotlrn-init.sql 1 Apr 2002 07:33:04 -0000 1.18 +++ openacs-4/packages/dotlrn/sql/oracle/dotlrn-init.sql 16 Apr 2002 13:53:52 -0000 1.19 @@ -57,6 +57,17 @@ description => 'e.g. Alumni' ); + -- create the user_workspace community_type + -- aks - it's a hack for portal templates + foo := dotlrn_community_type.new ( + community_type => 'user_workspace', + parent_type => 'dotlrn_community', + pretty_name => 'User Workspace', + pretty_plural => 'User Workspaces', + description => 'dummy type for User Workspace portal templates' + ); + + update acs_object_types set table_name = 'dotlrn_community', package_name = 'dotlrn_community' where object_type = 'dotlrn_community'; update acs_object_types set table_name = 'dotlrn_class_instance', package_name = 'dotlrn_class_instance' where object_type = 'dotlrn_class_instance'; update acs_object_types set table_name = 'dotlrn_club', package_name = 'dotlrn_club' where object_type = 'dotlrn_club';