From 2d7c568ae87e9476c04378f5dbee8748aefb2959 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Mon, 3 Jun 2013 00:40:49 +0200 Subject: [PATCH] Fixed SQL syntax errors --- wcfsetup/setup/db/install.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/setup/db/install.sql b/wcfsetup/setup/db/install.sql index 8b06fe3aca..1c9be668ac 100644 --- a/wcfsetup/setup/db/install.sql +++ b/wcfsetup/setup/db/install.sql @@ -338,7 +338,7 @@ DROP TABLE IF EXISTS wcf1_label_group; CREATE TABLE wcf1_label_group ( groupID INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, groupName VARCHAR(80) NOT NULL, - forceSelection TINYINT(1) NOT NULL DEFAULT 0, + forceSelection TINYINT(1) NOT NULL DEFAULT 0 ); DROP TABLE IF EXISTS wcf1_label_group_to_object; @@ -1151,7 +1151,7 @@ CREATE TABLE wcf1_user_notification_event ( className VARCHAR(255) NOT NULL DEFAULT '', permissions TEXT, options TEXT, - preset TINYINT(1) NOT DEFAULT 0, + preset TINYINT(1) NOT NULL DEFAULT 0, UNIQUE KEY eventName (eventName, objectTypeID) ); -- 2.20.1