File: //opt/cpanel/ea-php54/root/usr/share/pear/RVSeagullMod/modules/navigation/data/schema.oci.sql
-- ==============================================================
-- DBMS name: Oracle 9.x
-- Created on: 2004-12-15 10:32:00
-- ==============================================================
-- Table: section
-- ==============================================================
create table section (
section_id NUMBER(10) not null,
title VARCHAR(32) null,
resource_uri VARCHAR(128) null,
perms VARCHAR(32) null,
trans_id NUMBER(10) null,
parent_id NUMBER(10) null,
root_id NUMBER(10) null,
left_id NUMBER(10) null,
right_id NUMBER(10) null,
order_id NUMBER(10) null,
level_id NUMBER(10) null,
is_enabled NUMBER(5) null,
is_static NUMBER(5) null,
access_key CHAR(1) null,
rel VARCHAR(16) null,
constraint PK_SECTION primary key (section_id)
);
-- ==============================================================
-- Sequence: section_seq
-- ==============================================================
create sequence section_seq;
-- ==============================================================
-- Index: root_id
-- ==============================================================
create index AK_section_key_root_id on section (
root_id
);
-- ==============================================================
-- Index: order_id
-- ==============================================================
create index AK_section_key_order_id on section (
order_id
);
-- ==============================================================
-- Index: left_id
-- ==============================================================
create index AK_section_key_left_id on section (
left_id
);
-- ==============================================================
-- Index: right_id
-- ==============================================================
create index AK_section_key_right_id on section (
right_id
);
-- ==============================================================
-- Index: id_root_l_r
-- ==============================================================
create index AK_section_id_root_l_r on section (
section_id,
root_id,
left_id,
right_id
);
-- ==============================================================
-- Index: level_id
-- ==============================================================
create index AK_section_key_level_id on section (
level_id
);
-- ==============================================================
-- Table: uri_alias
-- ==============================================================
create table uri_alias (
uri_alias_id NUMBER(10) ,
uri_alias VARCHAR2(255) ,
section_id NUMBER(10) not null,
title VARCHAR2(255) ,
keywords CLOB,
description CLOB,
PRIMARY KEY (uri_alias_id)
) ;
-- ==============================================================
-- Sequence: uri_alias_seq
-- ==============================================================
create sequence uri_alias_seq;
-- ==============================================================
-- Index: uri_alias
-- ==============================================================
create index UK_uri_alias ON uri_alias (
uri_alias
);