Project

General

Profile

1 5276 jones
DROP TABLE identifier;
2
3 5371 berkley
CREATE TABLE systemMetadata (
4
   guid   text,          -- the globally unique string identifier
5
   docid  VARCHAR(250),	 -- the local document id #
6
   rev    INT8,          -- the revision part of the local identifier
7
   CONSTRAINT systemMetadata_pk PRIMARY KEY (guid)
8
);
9
10 5276 jones
CREATE TABLE identifier (
11
   guid   text,          -- the globally unique string identifier
12
   docid  VARCHAR(250),  -- the local document id #
13
   rev    INT8,          -- the revision part of the local identifier
14
   CONSTRAINT identifier_pk PRIMARY KEY (guid)
15
);
16
17
/*
18 5400 jones
 * Register the DataONE schemas
19
 */
20
INSERT INTO xml_catalog (entry_type, public_id, system_id)
21
  VALUES ('Schema', 'http://dataone.org/service/types/SystemMetadata/0.1', '/schema/D1_SCHEMA_0_1/systemmetadata.xsd');
22
INSERT INTO xml_catalog (entry_type, public_id, system_id)
23
  VALUES ('Schema', 'http://dataone.org/service/types/common/0.1', '/schema/D1_SCHEMA_0_1/common.xsd');
24
25
/*
26 5276 jones
 * update the database version
27
 */
28
UPDATE db_version SET status=0;
29
30
INSERT INTO db_version (version, status, date_created)
31
  VALUES ('1.10.0', 1, CURRENT_DATE);