Project

General

Profile

« Previous | Next » 

Revision 6136

add option for replicating system metadata (dataone)
https://redmine.dataone.org/issues/1626
also make sure the latest table changes are included in upgrade scripts

View differences:

xmltables-oracle.sql
80 80
  last_checked  DATE,
81 81
  replicate     NUMBER(1),
82 82
  datareplicate NUMBER(1),
83
  systemmetadatareplicate NUMBER(1),
83 84
  hub NUMBER(1),
84 85
  CONSTRAINT xml_replication_pk PRIMARY KEY (serverid)
85 86
);
......
94 95
END;
95 96
/
96 97

  
97
INSERT INTO xml_replication (server, replicate, datareplicate, hub)
98
 VALUES ('localhost', '0', '0', '0');
98
INSERT INTO xml_replication (server, replicate, datareplicate, systemmetadatareplicate, hub)
99
 VALUES ('localhost', '0', '0', '0', '0');
99 100

  
100 101
/*
101 102
 * Nodes -- table to store XML Nodes (both elements and attributes)

Also available in: Unified diff