Browse Source

Add database table for backgroundjob

tags/v6.0.0alpha2
Robin Appelman 11 years ago
parent
commit
db0ea9780b
2 changed files with 16 additions and 16 deletions
  1. 15
    15
      db_structure.xml
  2. 1
    1
      lib/util.php

+ 15
- 15
db_structure.xml View File

@@ -843,7 +843,7 @@

<table>

<name>*dbprefix*queuedtasks</name>
<name>*dbprefix*jobs</name>

<declaration>

@@ -858,35 +858,35 @@
</field>

<field>
<name>app</name>
<name>class</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
<length>256</length>
</field>

<field>
<name>klass</name>
<name>argument</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
<length>256</length>
</field>

<field>
<name>method</name>
<type>text</type>
<name>last_run</name>
<type>timestamp</type>
<default></default>
<notnull>true</notnull>
<length>255</length>
<notnull>false</notnull>
</field>

<field>
<name>parameters</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<index>
<name>job_class_index</name>
<field>
<name>class</name>
<sorting>ascending</sorting>
</field>
</index>

</declaration>


+ 1
- 1
lib/util.php View File

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

/**

Loading…
Cancel
Save