pdfdraw/appinfo/database.xml
2020-11-25 15:38:38 +01:00

52 lines
1 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*pdfdraw_items</name>
<declaration>
<field>
<name>file_id</name>
<type>text</type>
<notnull>true</notnull>
</field>
<field>
<name>page</name>
<type>integer</type>
<notnull>true</notnull>
</field>
<field>
<name>name</name>
<type>text</type>
<notnull>true</notnull>
</field>
<field>
<name>data</name>
<type>clob</type>
<notnull>true</notnull>
</field>
<index>
<name>fileid_index</name>
<field>
<name>file_id</name>
<sorting>ascending</sorting>
</field>
</index>
<index>
<name>fileid_name_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>file_id</name>
<sorting>ascending</sorting>
</field>
<field>
<name>name</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
</database>