metacat / src / upgrade-db-to-2.0.0-postgres.sql @ 6730
1 |
CREATE TABLE systemMetadata ( |
---|---|
2 |
guid text, -- the globally unique string identifier of the object that the system metadata describes |
3 |
serial_version VARCHAR(256), --the serial version of the object |
4 |
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 |
obsoletes text, -- the identifier that this record obsoletes |
17 |
obsoleted_by text, -- the identifier of the record that replaces this record |
18 |
CONSTRAINT systemMetadata_pk PRIMARY KEY (guid) |
19 |
); |
20 |
|
21 |
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 |
/*
|
39 |
* Remove the old Identifier table (pre-2.0)
|
40 |
*/
|
41 |
DROP TABLE identifier; |
42 |
/*
|
43 |
* Create the new one (DataONE features)
|
44 |
*/
|
45 |
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 |
* 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 |
* 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 |
/**
|
70 |
* track the user-agent for the request
|
71 |
*/
|
72 |
ALTER TABLE access_log ADD COLUMN user_agent VARCHAR(512); |
73 |
|
74 |
/*
|
75 |
* Register the new schema
|
76 |
*/
|
77 |
INSERT INTO xml_catalog (entry_type, public_id, system_id) |
78 |
VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd'); |
79 |
/*
|
80 |
* update the database version
|
81 |
*/
|
82 |
UPDATE db_version SET status=0; |
83 |
|
84 |
INSERT INTO db_version (version, status, date_created) |
85 |
VALUES ('2.0.0', 1, CURRENT_DATE); |
86 |
|