activity/appinfo/database.xml

96 строки
2.0 KiB
XML
Executable File

<?xml version="1.0" encoding="ISO-8859-1" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>latin1</charset>
<table>
<name>*dbprefix*activity</name>
<declaration>
<field>
<name>activity_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>timestamp</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>priority</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>type</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>user</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>affecteduser</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>app</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>subject</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>subjectparams</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>message</name>
<type>text</type>
<notnull>false</notnull>
<length>255</length>
</field>
<field>
<name>messageparams</name>
<type>text</type>
<notnull>false</notnull>
<length>255</length>
</field>
<field>
<name>file</name>
<type>text</type>
<notnull>false</notnull>
<length>255</length>
</field>
<field>
<name>link</name>
<type>text</type>
<notnull>false</notnull>
<length>255</length>
</field>
</declaration>
</table>
</database>