Project

General

Profile

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 5276 jones
CREATE TABLE identifier (
39
   guid   text,          -- the globally unique string identifier
40
   docid  VARCHAR(250),  -- the local document id #
41
   rev    INT8,          -- the revision part of the local identifier
42
   CONSTRAINT identifier_pk PRIMARY KEY (guid)
43
);
44
45
/*
46 6012 leinfelder
 * add the nodedatadate column to the tables that need it
47
 */
48
ALTER TABLE xml_nodes ADD COLUMN nodedatadate TIMESTAMP;
49
ALTER TABLE xml_nodes_revisions ADD COLUMN nodedatadate TIMESTAMP;
50
ALTER TABLE xml_path_index ADD COLUMN nodedatadate TIMESTAMP;
51
CREATE INDEX xml_path_index_idx5 ON xml_path_index (nodedatadate);
52
53
/*
54 6136 leinfelder
 * Replication changes to support DataONE System Metadata replication
55
 */
56
ALTER TABLE xml_replication ADD COLUMN systemmetadatareplicate INT8;
57
/*
58
 *  Allow guid in xml_access table (for system metadata)
59
*/
60
ALTER TABLE xml_access ADD COLUMN guid text;
61
62 6542 leinfelder
/**
63
 * track the user-agent for the request
64
 */
65
ALTER TABLE acces_log ADD COLUMN user_agent VARCHAR(512);
66
67 6136 leinfelder
/*
68 5400 jones
 * Register the DataONE schemas
69
 */
70 6460 leinfelder
71 5400 jones
INSERT INTO xml_catalog (entry_type, public_id, system_id)
72 6460 leinfelder
  VALUES ('Schema', 'http://ns.dataone.org/service/types/0.6.4', '/schema/D1_SCHEMA_0_6_4/dataoneTypes.xsd');
73 6092 jones
74
INSERT INTO xml_catalog (entry_type, public_id, system_id)
75 5709 leinfelder
  VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd');
76 5400 jones
/*
77 5276 jones
 * update the database version
78
 */
79
UPDATE db_version SET status=0;
80
81
INSERT INTO db_version (version, status, date_created)
82 6550 leinfelder
  VALUES ('2.0.0', 1, CURRENT_DATE);