Missing database changes from pull request #102
authorMatthias Schmidt <gravatronics@live.com>
Fri, 12 Aug 2011 14:53:00 +0000 (16:53 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 12 Aug 2011 14:53:00 +0000 (16:53 +0200)
wcfsetup/setup/db/install.sql

index 6b6aff650da010efe6cc2de5973c5b02184f8a21..15a1d156aaeec4d1ae3e19580c238b1a9c9049a9 100644 (file)
@@ -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
 );