1
|
DROP TABLE identifier;
|
2
|
|
3
|
CREATE TABLE systemMetadata (
|
4
|
guid text, -- the globally unique string identifier
|
5
|
docid VARCHAR(250), -- the local document id #
|
6
|
rev INT8, -- the revision part of the local identifier
|
7
|
CONSTRAINT systemMetadata_pk PRIMARY KEY (guid)
|
8
|
);
|
9
|
|
10
|
CREATE TABLE identifier (
|
11
|
guid text, -- the globally unique string identifier
|
12
|
docid VARCHAR(250), -- the local document id #
|
13
|
rev INT8, -- the revision part of the local identifier
|
14
|
CONSTRAINT identifier_pk PRIMARY KEY (guid)
|
15
|
);
|
16
|
|
17
|
/*
|
18
|
* Register the DataONE schemas
|
19
|
*/
|
20
|
|
21
|
INSERT INTO xml_catalog (entry_type, public_id, system_id)
|
22
|
VALUES ('Schema', 'http://dataone.org/service/types/0.5.1', '/schema/D1_SCHEMA_0_5_1/dataoneTypes.xsd');
|
23
|
|
24
|
/*
|
25
|
* update the database version
|
26
|
*/
|
27
|
UPDATE db_version SET status=0;
|
28
|
|
29
|
INSERT INTO db_version (version, status, date_created)
|
30
|
VALUES ('1.10.0', 1, CURRENT_DATE);
|
31
|
|