b55ab6d22a
* String columns with a length higher then 4000 are converted into a CLOB columns automagically - we have to respect this when migrating * Adding schema migration tests to prevent unnecessary and non-sense migration steps Fix Oracle autoincrement and unsigned handling * Fix sqlite integer type for autoincrement * Use lower case table names - fixes pg * Fix postgres with default -1 - this only affect pg 9.4 servers - 9.5 seems to work fine
68 lines
1.3 KiB
XML
68 lines
1.3 KiB
XML
<?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>
|