Revision 1529
Added by Jing Tao over 21 years ago
src/createaccesssubtreetable_postgres.sql | ||
---|---|---|
1 |
|
|
2 |
/* |
|
3 |
* accessSubtree -- table to store access subtree info |
|
4 |
*/ |
|
5 |
CREATE TABLE xml_accesssubtree ( |
|
6 |
docid VARCHAR(250), -- the document id # |
|
7 |
rev INT8 default 1, --the revision number of the docume |
|
8 |
controllevel VARCHAR(50), -- the level it control -- document or subtree |
|
9 |
subtreeid VARCHAR(250), -- the subtree id |
|
10 |
startnodeid INT8, -- the start node id of access subtree |
|
11 |
endnodeid INT8 -- the end node if of access subtree |
|
12 |
); |
|
0 | 13 |
Also available in: Unified diff
Patch script to create a table to store info for access block it self.