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?)
25 lines
698 B
SQL
25 lines
698 B
SQL
DROP TABLE persons;
|
|
DROP TABLE institutes;
|
|
DROP TABLE documents;
|
|
DROP TABLE authors_docs;
|
|
DROP TABLE phones;
|
|
DROP SEQUENCE person_ids;
|
|
DROP SEQUENCE institute_ids;
|
|
DROP SEQUENCE document_ids;
|
|
DROP SEQUENCE phone_ids;
|
|
DROP PROCEDURE create_person;
|
|
DROP PROCEDURE delete_person;
|
|
DROP PROCEDURE add_phone;
|
|
DROP PROCEDURE delete_phone;
|
|
DROP PROCEDURE set_person_name;
|
|
DROP PROCEDURE set_org_name;
|
|
DROP PROCEDURE set_doc_title;
|
|
DROP PROCEDURE set_doc_abstract;
|
|
DROP PROCEDURE create_document;
|
|
DROP PROCEDURE create_org;
|
|
DROP PROCEDURE delete_document;
|
|
DROP PROCEDURE delete_org;
|
|
DROP PROCEDURE make_doc_link;
|
|
DROP PROCEDURE del_doc_link;
|
|
DROP PROCEDURE make_author_link;
|
|
DROP PROCEDURE del_author_link;
|