-- @author Ghost Bear -- @creation-date 2002-10-14 -- @cvs-id $Id: bcds-create.sql,v 1.1 2003/05/14 15:30:22 juny Exp $ -- this are praesagus custom stuff -- TODO: study and refactor to be integrated to bcds create table praesagus_protected_items ( page_id integer constraint praesagus_protected_items_fk references cr_items(item_id) on delete cascade constraint praesagus_protected_items_pk primary key ); create table praesagus_featured_items ( page_id integer constraint praesagus_featured_items_fk references cr_items(item_id) on delete cascade constraint praesagus_featured_items_pk primary key );