From: Matthias Schmidt Date: Fri, 12 Aug 2011 14:53:00 +0000 (+0200) Subject: Missing database changes from pull request #102 X-Git-Tag: 2.0.0_Beta_1~1882^2^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c9117aade83e4affce571658d20ec095eb49bf97;p=GitHub%2FWoltLab%2FWCF.git Missing database changes from pull request #102 --- diff --git a/wcfsetup/setup/db/install.sql b/wcfsetup/setup/db/install.sql index 6b6aff650d..15a1d156aa 100644 --- a/wcfsetup/setup/db/install.sql +++ b/wcfsetup/setup/db/install.sql @@ -127,10 +127,10 @@ CREATE TABLE wcf1_cronjob ( lastExec INT(10) NOT NULL DEFAULT 0, nextExec INT(10) NOT NULL DEFAULT 0, afterNextExec INT(10) NOT NULL DEFAULT 0, - active TINYINT NOT NULL DEFAULT 1, - canBeEdited TINYINT NOT NULL DEFAULT 1, - canBeDisabled TINYINT NOT NULL DEFAULT 1, - state TINYINT(1) NOT NULL DEFAULT 1, + active TINYINT(1) NOT NULL DEFAULT 1, + canBeEdited TINYINT(1) NOT NULL DEFAULT 1, + canBeDisabled TINYINT(1) NOT NULL DEFAULT 1, + state TINYINT(1) NOT NULL DEFAULT 0, failCount TINYINT(1) NOT NULL DEFAULT 0 ); @@ -139,7 +139,7 @@ CREATE TABLE wcf1_cronjob_log ( cronjobLogID INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, cronjobID INT(10) NOT NULL, execTime INT(10) NOT NULL DEFAULT 0, - success TINYINT NOT NULL DEFAULT 0, + success TINYINT(1) NOT NULL DEFAULT 0, error TEXT );