-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.xml
More file actions
28 lines (21 loc) · 814 Bytes
/
schema.xml
File metadata and controls
28 lines (21 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<schema>
<table name="node">
<column name="fqnn" type="string" length="128" />
<column name="data" type="text" notnull="false" />
<index name="primary" primary="true" columns="fqnn" />
</table>
<!--
<table name="tag">
<column name="fqnn" type="string" length="128" />
<column name="fqtn" type="string" length="128" />
<index name="unique_fqnn_fqtn" unique="true" doc="unique type and node" columns="fqtn, fqnn" />
</table>
<table name="property">
<column name="fqnn" type="string" length="128" />
<column name="fqtn" type="string" length="128" />
<column name="field" type="string" length="64" />
<column name="value" type="text" />
</table>
-->
</schema>