Project

General

Profile

« Previous | Next » 

Revision 1531

Added by Jing Tao over 21 years ago

Add code to store info for access block itself.

View differences:

xmltables_postgres.sql
241 241
   date_created DATE
242 242
);
243 243

  
244
/* 
245
 * accessSubtree -- table to store access subtree info 
246
 */
247
CREATE TABLE xml_accesssubtree (
248
	docid		VARCHAR(250),	-- the document id #
249
  rev 		INT8 default 1, --the revision number of the docume
250
  controllevel VARCHAR(50), -- the level it control -- document or subtree
251
  subtreeid VARCHAR(250), -- the subtree id 
252
	startnodeid	INT8,	-- the start node id of access subtree
253
  endnodeid INT8 -- the end node if of access subtree
254
);
244 255

  
245

  

Also available in: Unified diff