Project

General

Profile

1
CREATE TABLE systemMetadata (
2
   guid   text,          -- the globally unique string identifier
3
   docid  VARCHAR(250),	 -- the local document id #
4
   rev    INT8,          -- the revision part of the local identifier
5
   date_uploaded TIMESTAMP, -- the date/time the document was first submitted
6
   rights_holder VARCHAR(250), --the user who has rights to the document, usually the first persons to upload it
7
   checksum VARCHAR(512), --the checksum of the doc using the given algorithm (see below)
8
   checksum_algorithm VARCHAR(250), --the algorithm used to calculate the checksum
9
   origin_member_node VARCHAR(250), --the member node where the document was first uploaded
10
   authoritive_member_node VARCHAR(250), --the member node that currently controls the document
11
   date_modified TIMESTAMP, -- the last date/time that the file was changed
12
   submitter VARCHAR(256), -- the user who originally submitted the doc
13
   object_format VARCHAR(256), --the format of the object
14
   size VARCHAR(256), --the size of the object
15
   CONSTRAINT systemMetadata_pk PRIMARY KEY (guid)
16
);
17

    
18
CREATE TABLE identifier (
19
   guid   text,          -- the globally unique string identifier
20
   docid  VARCHAR(250),  -- the local document id #
21
   rev    INT8,          -- the revision part of the local identifier
22
   CONSTRAINT identifier_pk PRIMARY KEY (guid)
23
);
24

    
25
/*
26
 * add the nodedatadate column to the tables that need it 
27
 */
28
ALTER TABLE xml_nodes ADD COLUMN nodedatadate TIMESTAMP;
29
ALTER TABLE xml_nodes_revisions ADD COLUMN nodedatadate TIMESTAMP;
30
ALTER TABLE xml_path_index ADD COLUMN nodedatadate TIMESTAMP;
31
CREATE INDEX xml_path_index_idx5 ON xml_path_index (nodedatadate);
32

    
33
/*
34
 * Register the DataONE schemas
35
 */
36
 
37
INSERT INTO xml_catalog (entry_type, public_id, system_id)
38
  VALUES ('Schema', 'http://dataone.org/service/types/0.5.1', '/schema/D1_SCHEMA_0_5_1/dataoneTypes.xsd');
39

    
40
INSERT INTO xml_catalog (entry_type, public_id, system_id)
41
  VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd');  
42
/*
43
 * update the database version
44
 */
45
UPDATE db_version SET status=0;
46

    
47
INSERT INTO db_version (version, status, date_created) 
48
  VALUES ('1.10.0', 1, CURRENT_DATE);
49

    
(23-23/49)