Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Sack <mail@jakobsack.de>2012-08-10 03:30:08 +0400
committerJakob Sack <mail@jakobsack.de>2012-08-10 03:30:08 +0400
commit595591a460c9956e0908c89dd90bf79e5c86aee2 (patch)
tree257cabed49cd2ef2bacbfcb8b8ce9f098588b96d /db_structure.xml
parent831ec985dbdfa4cc401241dd33c59606f9e9b3e9 (diff)
Backgroundjobs: Add table to db_structure.xml
Diffstat (limited to 'db_structure.xml')
-rw-r--r--db_structure.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml
index f6dedab0a13..5a783d41a9c 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -508,6 +508,58 @@
<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>
<declaration>