Backgroundjobs: Add table to db_structure.xml

This commit is contained in:
Jakob Sack 2012-08-10 01:30:08 +02:00
parent 831ec985db
commit 595591a460
1 changed files with 52 additions and 0 deletions

View File

@ -506,6 +506,58 @@
</table>
<table>
<name>*dbprefix*queuedtasks</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<unsigned>true</unsigned>
<length>4</length>
</field>
<field>
<name>app</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>klass</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>method</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>parameters</name>
<type>clob</type>
<notnull>true</notnull>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*users</name>