diff options
Diffstat (limited to 'tests/lib/DB/schemDiffData/unsigned.xml')
-rw-r--r-- | tests/lib/DB/schemDiffData/unsigned.xml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/lib/DB/schemDiffData/unsigned.xml b/tests/lib/DB/schemDiffData/unsigned.xml new file mode 100644 index 00000000000..e89fd6a5d4e --- /dev/null +++ b/tests/lib/DB/schemDiffData/unsigned.xml @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="utf-8" ?> +<database> + + <table> + + <!-- + Scheduled background jobs. + See OC\BackgroundJob\JobList. + --> + <name>*dbprefix*jobs</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>class</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>255</length> + </field> + + <field> + <name>argument</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>4000</length> + </field> + + <field> + <!-- timestamp when the job was executed the last time --> + <name>last_run</name> + <type>integer</type> + <default></default> + <notnull>false</notnull> + </field> + + <field> + <!-- timestamp when the job was checked if it needs execution the last time --> + <name>last_checked</name> + <type>integer</type> + <default></default> + <notnull>false</notnull> + </field> + + <field> + <!-- timestamp when the job was reserved the last time, 1 day timeout --> + <name>reserved_at</name> + <type>integer</type> + <default></default> + <notnull>false</notnull> + </field> + + </declaration> + + </table> + +</database> |