mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
including: - fixes according to new API changes - closing db connection in connection_destroy callback, not unbind - support of new schema code, samples changed accordingly - support for multiple objectclasses (to distinguish from unique objectclass-to-tables mapping) - auto 'ref' attribute support - samples now include illustrations of using these 2 features to make named referrals as described in ldapext-namedref draft more to come: - documentation update - different improvements to be more close to native directory (after beta?)
66 lines
1.1 KiB
SQL
66 lines
1.1 KiB
SQL
CREATE TABLE persons (
|
|
id NUMBER NOT NULL,
|
|
name varchar2(255) NOT NULL
|
|
);
|
|
|
|
CREATE TABLE institutes (
|
|
id NUMBER NOT NULL,
|
|
name varchar2(255)
|
|
);
|
|
|
|
CREATE TABLE documents (
|
|
id NUMBER NOT NULL,
|
|
title varchar2(255) NOT NULL,
|
|
abstract varchar2(255)
|
|
);
|
|
|
|
CREATE TABLE authors_docs (
|
|
pers_id NUMBER NOT NULL,
|
|
doc_id NUMBER NOT NULL
|
|
);
|
|
|
|
CREATE TABLE phones (
|
|
id NUMBER NOT NULL ,
|
|
phone varchar2(255) NOT NULL ,
|
|
pers_id NUMBER NOT NULL
|
|
);
|
|
|
|
|
|
ALTER TABLE authors_docs ADD
|
|
CONSTRAINT PK_authors_docs PRIMARY KEY
|
|
(
|
|
pers_id,
|
|
doc_id
|
|
);
|
|
|
|
ALTER TABLE documents ADD
|
|
CONSTRAINT PK_documents PRIMARY KEY
|
|
(
|
|
id
|
|
);
|
|
|
|
ALTER TABLE institutes ADD
|
|
CONSTRAINT PK_institutes PRIMARY KEY
|
|
(
|
|
id
|
|
);
|
|
|
|
ALTER TABLE persons ADD
|
|
CONSTRAINT PK_persons PRIMARY KEY
|
|
(
|
|
id
|
|
);
|
|
|
|
ALTER TABLE phones ADD
|
|
CONSTRAINT PK_phones PRIMARY KEY
|
|
(
|
|
id
|
|
);
|
|
|
|
CREATE SEQUENCE person_ids START WITH 1 INCREMENT BY 1;
|
|
|
|
CREATE SEQUENCE document_ids START WITH 1 INCREMENT BY 1;
|
|
|
|
CREATE SEQUENCE institute_ids START WITH 1 INCREMENT BY 1;
|
|
|
|
CREATE SEQUENCE phone_ids START WITH 1 INCREMENT BY 1;
|