From: Robin Appelman Date: Sat, 20 Apr 2013 22:04:58 +0000 (+0200) Subject: Add database table for backgroundjob X-Git-Tag: v6.0.0alpha2~695^2~12 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=db0ea9780b3056a9161205588e55c4808648ec0a;p=nextcloud-server.git Add database table for backgroundjob --- diff --git a/db_structure.xml b/db_structure.xml index dce90697b1c..3372be9f69f 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -843,7 +843,7 @@ - *dbprefix*queuedtasks + *dbprefix*jobs @@ -858,35 +858,35 @@ - app + class text true - 255 + 256 - klass + argument text true - 255 + 256 - method - text + last_run + timestamp - true - 255 + false - - parameters - text - true - 255 - + + job_class_index + + class + ascending + + diff --git a/lib/util.php b/lib/util.php index 38453c1ce92..b3fab5041f2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -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); } /**