Skip to content
Snippets Groups Projects
Commit 595591a4 authored by Jakob Sack's avatar Jakob Sack
Browse files

Backgroundjobs: Add table to db_structure.xml

parent 831ec985
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment