--
-- 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.
--
--
-- create portal metadata
--
-- @author arjun@openforce.net
-- @author yon@openforce.net
-- @creation-date 2001-10-01
-- @version $Id: objects-create.sql,v 1.1.1.1 2002/10/25 21:29:17 yon Exp $
--
select acs_object_type__create_type(
'portal',
'Portal',
'Portals',
'acs_object',
'PORTALS',
'PORTAL_ID',
'portal',
'f',
null,
null
);
select acs_object_type__create_type(
'portal_theme',
'Portal Theme',
'Portal Themes',
'acs_object',
'PORTAL_THEMES',
'THEME_ID',
'portal_themes',
'f',
null,
null
);
select acs_object_type__create_type(
'portal_page',
'Portal Page',
'Portal Pages',
'acs_object',
'PORTAL_PAGES',
'PAGE_ID',
'portal_page',
'f',
null,
null
);
select acs_object_type__create_type(
'portal_layout',
'Portal Layout',
'Portal Layouts',
'acs_object',
'PORTAL_LAYOUTS',
'LAYOUT_ID',
'portal_layout',
'f',
null,
null
);