nextcloud/apps/storage_charts/appinfo/database.xml

100 lines
2.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="ISO-8859-1" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*dlstcharts</name>
<declaration>
<field>
<name>stc_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>oc_uid</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>stc_month</name>
<type>integer</type>
<notnull>true</notnull>
<length>6</length>
</field>
<field>
<name>stc_dayts</name>
<type>integer</type>
<notnull>true</notnull>
<length>11</length>
</field>
<field>
<name>stc_used</name>
<type>integer</type>
<notnull>true</notnull>
<length>30</length>
</field>
<field>
<name>stc_total</name>
<type>integer</type>
<notnull>true</notnull>
<length>30</length>
</field>
<index>
<name>stc_pk</name>
<primary>true</primary>
<field>
<name>stc_id</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*dlstcharts_uconf</name>
<declaration>
<field>
<name>uc_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>oc_uid</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>uc_key</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>uc_val</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<index>
<name>uc_pk</name>
<primary>true</primary>
<field>
<name>uc_id</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
</database>