nextcloud/apps/atnotes/appinfo/database.xml

79 lines
1.7 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*atnotes</name>
<declaration>
<field>
<name>note_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>create_ts</name>
<type>integer</type>
<notnull>true</notnull>
<length>11</length>
</field>
<field>
<name>update_ts</name>
<type>integer</type>
<notnull>false</notnull>
<default>0</default>
<length>11</length>
</field>
<field>
<name>note_title</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>note_content</name>
<type>clob</type>
<notnull>false</notnull>
</field>
<field>
<name>note_file</name>
<type>text</type>
<notnull>false</notnull>
<length>255</length>
</field>
<field>
<name>is_deleted</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>1</length>
</field>
<field>
<name>is_shared</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>1</length>
</field>
<index>
<name>note_pk</name>
<primary>true</primary>
<field>
<name>note_id</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
</database>