DROP SEQUENCE identifier_id_seq; DROP TRIGGER identifier_before_insert; DROP TABLE identifier; DROP SEQUENCE systemMetadata_id_seq; DROP TRIGGER systemMetadata_before_insert; DROP TABLE systemMetadata; CREATE TABLE systemMetadata ( guid VARCHAR2(2000), -- the globally unique string identifier docid VARCHAR(250), -- the local document id # rev NUMBER(8) -- the revision part of the local identifier ) CREATE TABLE identifier ( guid VARCHAR2(2000), -- the globally unique string identifier docid VARCHAR2(250), -- the local document id # rev NUMBER(8) -- the revision part of the local identifier ); /* * update the database version */ UPDATE db_version SET status=0; INSERT INTO db_version (version, status, date_created) VALUES ('1.10.0', 1, CURRENT_DATE);