Add database table for backgroundjob

This commit is contained in:
Robin Appelman 2013-04-21 00:04:58 +02:00
Родитель 3aecfda0c0
Коммит db0ea9780b
2 изменённых файлов: 16 добавлений и 16 удалений

Просмотреть файл

@ -843,7 +843,7 @@
<table> <table>
<name>*dbprefix*queuedtasks</name> <name>*dbprefix*jobs</name>
<declaration> <declaration>
@ -858,35 +858,35 @@
</field> </field>
<field> <field>
<name>app</name> <name>class</name>
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>256</length>
</field> </field>
<field> <field>
<name>klass</name> <name>argument</name>
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>256</length>
</field> </field>
<field> <field>
<name>method</name> <name>last_run</name>
<type>text</type> <type>timestamp</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>false</notnull>
<length>255</length>
</field> </field>
<field> <index>
<name>parameters</name> <name>job_class_index</name>
<type>text</type> <field>
<notnull>true</notnull> <name>class</name>
<length>255</length> <sorting>ascending</sorting>
</field> </field>
</index>
</declaration> </declaration>

Просмотреть файл

@ -75,7 +75,7 @@ class OC_Util {
public static function getVersion() { public static function getVersion() {
// hint: We only can count up. Reset minor/patchlevel when // hint: We only can count up. Reset minor/patchlevel when
// updating major/minor version number. // updating major/minor version number.
return array(5, 80, 02); return array(5, 80, 03);
} }
/** /**