From 24d8809212baf13212739c241cce712c9538c79e Mon Sep 17 00:00:00 2001 From: max-m Date: Wed, 30 Nov 2011 21:43:38 +0100 Subject: [PATCH] Fixed error on installation Removed "IF NOT EXISTS" 'cause it seemed, that PDO can't handle it. --- install.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sql b/install.sql index 976592d..dc161c3 100644 --- a/install.sql +++ b/install.sql @@ -32,7 +32,7 @@ CREATE TABLE wcf1_chat_room ( ); DROP TABLE IF EXISTS wcf1_chat_room_suspension; -CREATE TABLE IF NOT EXISTS wcf1_chat_room_suspension ( +CREATE TABLE wcf1_chat_room_suspension ( roomID int(10) NOT NULL, userID int(10) NOT NULL, type tinyint(3) NOT NULL,