-- -- Copyright (C) 2001, 2002 MIT -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- Initialize the User Profile package -- -- @author yon@openforce.net -- @version $Id: users-init.sql,v 1.3 2006/08/08 21:26:21 donb Exp $ -- declare foo integer; begin acs_rel_type.create_type( rel_type => 'dotlrn_user_profile_rel', supertype => 'user_profile_rel', pretty_name => 'dotLRN Profile User', pretty_plural => 'dotLRN Profile Users', package_name => 'dotlrn_user_profile_rel', table_name => 'dotlrn_user_profile_rels', id_column => 'rel_id', object_type_one => 'profiled_group', role_one => null, min_n_rels_one => 0, max_n_rels_one => null, object_type_two => 'user', role_two => null, min_n_rels_two => 0, max_n_rels_two => 1 ); select min(impl_id) into foo from acs_sc_impls where impl_name = 'dotlrn_user_profile_provider'; foo := profiled_group.new( profile_provider => foo, group_name => 'dotLRN Users' ); foo := rel_segment.new( segment_name => 'dotLRN Users', group_id => foo, rel_type => 'dotlrn_user_profile_rel' ); end; / show errors