1 |
5371
|
berkley
|
CREATE TABLE systemMetadata (
|
2 |
6136
|
leinfelder
|
guid text, -- the globally unique string identifier of the object that the system metadata describes
|
3 |
6561
|
leinfelder
|
serial_version VARCHAR(256), --the serial version of the object
|
4 |
6136
|
leinfelder
|
date_uploaded TIMESTAMP, -- the date/time the document was first submitted
|
5 |
|
|
rights_holder VARCHAR(250), --the user who has rights to the document, usually the first persons to upload it
|
6 |
|
|
checksum VARCHAR(512), --the checksum of the doc using the given algorithm (see below)
|
7 |
|
|
checksum_algorithm VARCHAR(250), --the algorithm used to calculate the checksum
|
8 |
|
|
origin_member_node VARCHAR(250), --the member node where the document was first uploaded
|
9 |
|
|
authoritive_member_node VARCHAR(250), --the member node that currently controls the document
|
10 |
|
|
date_modified TIMESTAMP, -- the last date/time that the file was changed
|
11 |
|
|
submitter VARCHAR(256), -- the user who originally submitted the doc
|
12 |
|
|
object_format VARCHAR(256), --the format of the object
|
13 |
|
|
size VARCHAR(256), --the size of the object
|
14 |
|
|
replication_allowed boolean, -- replication allowed
|
15 |
|
|
number_replicas INT8, -- the number of replicas allowed
|
16 |
6375
|
leinfelder
|
obsoletes text, -- the identifier that this record obsoletes
|
17 |
|
|
obsoleted_by text, -- the identifier of the record that replaces this record
|
18 |
6136
|
leinfelder
|
CONSTRAINT systemMetadata_pk PRIMARY KEY (guid)
|
19 |
5371
|
berkley
|
);
|
20 |
|
|
|
21 |
6136
|
leinfelder
|
CREATE TABLE systemMetadataReplicationPolicy (
|
22 |
|
|
guid text, -- the globally unique string identifier of the object that the system metadata describes
|
23 |
|
|
member_node VARCHAR(250), -- replication member node
|
24 |
|
|
policy text, -- the policy (preferred, blocked, etc...TBD)
|
25 |
|
|
CONSTRAINT systemMetadataReplicationPolicy_fk
|
26 |
|
|
FOREIGN KEY (guid) REFERENCES systemMetadata
|
27 |
|
|
);
|
28 |
|
|
|
29 |
|
|
CREATE TABLE systemMetadataReplicationStatus (
|
30 |
|
|
guid text, -- the globally unique string identifier of the object that the system metadata describes
|
31 |
|
|
member_node VARCHAR(250), -- replication member node
|
32 |
|
|
status VARCHAR(250), -- replication status
|
33 |
|
|
date_verified TIMESTAMP, -- the date replication was verified
|
34 |
|
|
CONSTRAINT systemMetadataReplicationStatus_fk
|
35 |
|
|
FOREIGN KEY (guid) REFERENCES systemMetadata
|
36 |
|
|
);
|
37 |
|
|
|
38 |
6583
|
leinfelder
|
/*
|
39 |
|
|
* Remove the old Identifier table (pre-2.0)
|
40 |
|
|
*/
|
41 |
|
|
DROP TABLE identifier;
|
42 |
|
|
/*
|
43 |
|
|
* Create the new one (DataONE features)
|
44 |
|
|
*/
|
45 |
5276
|
jones
|
CREATE TABLE identifier (
|
46 |
|
|
guid text, -- the globally unique string identifier
|
47 |
|
|
docid VARCHAR(250), -- the local document id #
|
48 |
|
|
rev INT8, -- the revision part of the local identifier
|
49 |
|
|
CONSTRAINT identifier_pk PRIMARY KEY (guid)
|
50 |
|
|
);
|
51 |
|
|
|
52 |
|
|
/*
|
53 |
6012
|
leinfelder
|
* add the nodedatadate column to the tables that need it
|
54 |
|
|
*/
|
55 |
|
|
ALTER TABLE xml_nodes ADD COLUMN nodedatadate TIMESTAMP;
|
56 |
|
|
ALTER TABLE xml_nodes_revisions ADD COLUMN nodedatadate TIMESTAMP;
|
57 |
|
|
ALTER TABLE xml_path_index ADD COLUMN nodedatadate TIMESTAMP;
|
58 |
|
|
CREATE INDEX xml_path_index_idx5 ON xml_path_index (nodedatadate);
|
59 |
|
|
|
60 |
|
|
/*
|
61 |
6136
|
leinfelder
|
* Replication changes to support DataONE System Metadata replication
|
62 |
|
|
*/
|
63 |
|
|
ALTER TABLE xml_replication ADD COLUMN systemmetadatareplicate INT8;
|
64 |
|
|
/*
|
65 |
|
|
* Allow guid in xml_access table (for system metadata)
|
66 |
|
|
*/
|
67 |
|
|
ALTER TABLE xml_access ADD COLUMN guid text;
|
68 |
|
|
|
69 |
6542
|
leinfelder
|
/**
|
70 |
|
|
* track the user-agent for the request
|
71 |
|
|
*/
|
72 |
|
|
ALTER TABLE acces_log ADD COLUMN user_agent VARCHAR(512);
|
73 |
|
|
|
74 |
6136
|
leinfelder
|
/*
|
75 |
5400
|
jones
|
* Register the DataONE schemas
|
76 |
|
|
*/
|
77 |
6460
|
leinfelder
|
|
78 |
5400
|
jones
|
INSERT INTO xml_catalog (entry_type, public_id, system_id)
|
79 |
6460
|
leinfelder
|
VALUES ('Schema', 'http://ns.dataone.org/service/types/0.6.4', '/schema/D1_SCHEMA_0_6_4/dataoneTypes.xsd');
|
80 |
6092
|
jones
|
|
81 |
|
|
INSERT INTO xml_catalog (entry_type, public_id, system_id)
|
82 |
5709
|
leinfelder
|
VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd');
|
83 |
5400
|
jones
|
/*
|
84 |
5276
|
jones
|
* update the database version
|
85 |
|
|
*/
|
86 |
|
|
UPDATE db_version SET status=0;
|
87 |
|
|
|
88 |
|
|
INSERT INTO db_version (version, status, date_created)
|
89 |
6550
|
leinfelder
|
VALUES ('2.0.0', 1, CURRENT_DATE);
|