Project

General

Profile

1
CREATE TABLE systemMetadata (
2
   guid   VARCHAR2(2000),    -- the globally unique string identifier
3
   date_uploaded DATE, -- the date/time the document was first submitted
4
   rights_holder VARCHAR2(250), --the user who has rights to the document, usually the first persons to upload it
5
   checksum VARCHAR2(512), --the checksum of the doc using the given algorithm (see below)
6
   checksum_algorithm VARCHAR2(250), --the algorithm used to calculate the checksum
7
   origin_member_node VARCHAR2(250), --the member node where the document was first uploaded
8
   authoritive_member_node VARCHAR2(250), --the member node that currently controls the document
9
   date_modified DATE, -- the last date/time that the file was changed
10
   submitter VARCHAR2(256), -- the user who originally submitted the doc
11
   object_format VARCHAR2(256), --the format of the object
12
   size VARCHAR2(256), --the size of the object
13
   replication_allowed boolean,	 -- replication allowed
14
   number_replicas NUMBER(8), 	-- the number of replicas allowed
15
   obsoletes   VARCHAR2(2000),    -- the identifier of the record that this replaces
16
   obsoleted_by   VARCHAR2(2000),    -- the identifier of the record that replaces this record
17
   CONSTRAINT systemMetadata_pk 
18
		PRIMARY KEY (guid)
19
)
20

    
21
/*
22
 * Table used to store system metadata map information
23
 */
24
CREATE TABLE systemMetadataMap (
25
   guid   		VARCHAR2(2000),          -- the globally unique string identifier of the object that the system metadata describes
26
   relationship	VARCHAR(250),	 -- the provenance relationship defined between objects
27
   target_guid	VARCHAR2(2000),          -- the globally unique string identifier of the other object
28
   CONSTRAINT systemMetadataMap_fk 
29
		FOREIGN KEY (guid) REFERENCES systemMetadata
30
);
31

    
32
CREATE TABLE systemMetadataReplicationPolicy (
33
	guid VARCHAR2(2000),	-- the globally unique string identifier of the object that the system metadata describes
34
	member_node VARCHAR(250),	 -- replication member node
35
	policy VARCHAR2(2000),	 -- the policy (preferred, blocked, etc...TBD)
36
	CONSTRAINT systemMetadataReplicationPolicy_fk 
37
		FOREIGN KEY (guid) REFERENCES systemMetadata
38
);
39

    
40
CREATE TABLE systemMetadataReplicationStatus (
41
	guid VARCHAR2(2000),	-- the globally unique string identifier of the object that the system metadata describes
42
	member_node VARCHAR(250),	 -- replication member node
43
	status VARCHAR(250),	 -- replication status
44
	date_verified DATE, 	-- the date replication was verified   
45
	CONSTRAINT systemMetadataReplicationStatus_fk 
46
		FOREIGN KEY (guid) REFERENCES systemMetadata
47
);
48

    
49
CREATE TABLE identifier (
50
   guid   VARCHAR2(2000), -- the globally unique string identifier
51
   docid  VARCHAR2(250),  -- the local document id #
52
   rev    NUMBER(8)       -- the revision part of the local identifier
53
);
54

    
55
/*
56
 * Replication changes to support DataONE System Metadata replication
57
 */
58
ALTER TABLE xml_replication ADD COLUMN systemmetadatareplicate NUMBER(1);
59
/*
60
 *  Allow guid in xml_access table (for system metadata)
61
*/
62
ALTER TABLE xml_access ADD COLUMN guid VARCHAR2(2000);
63

    
64
/*
65
 * add the nodedatadate column to xml_nodes 
66
 * TODO: load the data into it (java?)
67
 */
68
ALTER TABLE xml_nodes ADD COLUMN nodedatadate TIMESTAMP;
69
ALTER TABLE xml_nodes_revisions ADD COLUMN nodedatadate TIMESTAMP;
70
ALTER TABLE xml_path_index ADD COLUMN nodedatadate TIMESTAMP;
71
CREATE INDEX xml_path_index_idx4 ON xml_path_index (nodedatadate);
72

    
73

    
74
/*
75
 * Register the DataONE schemas
76
 */
77
INSERT INTO xml_catalog (entry_type, public_id, system_id)
78
  VALUES ('Schema', 'http://dataone.org/service/types/0.5.1', '/schema/D1_SCHEMA_0_5_1/dataoneTypes.xsd');
79
INSERT INTO xml_catalog (entry_type, public_id, system_id)
80
  VALUES ('Schema', 'http://ns.dataone.org/service/types/0.6.1', '/schema/D1_SCHEMA_0_6_1/dataoneTypes.xsd');
81
INSERT INTO xml_catalog (entry_type, public_id, system_id)
82
  VALUES ('Schema', 'http://ns.dataone.org/service/types/0.6.2', '/schema/D1_SCHEMA_0_6_2/dataoneTypes.xsd');
83
  
84
INSERT INTO xml_catalog (entry_type, public_id, system_id)
85
  VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd');
86

    
87
/*
88
 * update the database version
89
 */
90
UPDATE db_version SET status=0;
91

    
92
INSERT INTO db_version (version, status, date_created) 
93
  VALUES ('1.10.0', 1, CURRENT_DATE);
(22-22/53)