files_antivirus/appinfo/database.xml

111 строки
1.9 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*files_antivirus</name>
<declaration>
<field>
<name>fileid</name>
<type>integer</type>
<primary>true</primary>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>check_time</name>
<type>integer</type>
<default></default>
<notnull>true</notnull>
<unsigned>true</unsigned>
<length>4</length>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*files_antivirus_status</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<unsigned>true</unsigned>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>group_id</name>
<type>integer</type>
<default></default>
<notnull>true</notnull>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>status_type</name>
<type>integer</type>
<default></default>
<notnull>true</notnull>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>result</name>
<type>integer</type>
<default></default>
<notnull>true</notnull>
<unsigned>false</unsigned>
<length>4</length>
</field>
<field>
<name>match</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>description</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>status</name>
<type>integer</type>
<default></default>
<notnull>true</notnull>
<unsigned>false</unsigned>
<length>4</length>
</field>
</declaration>
</table>
</database>