From c0f8b86a58af6165fecc9abb6db4cfb0ced8c89a Mon Sep 17 00:00:00 2001 From: max-m Date: Sun, 27 Nov 2011 19:18:36 +0100 Subject: [PATCH] This should fix the SQL error on installation. --- install.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sql b/install.sql index 96bc86a..b06b2b3 100644 --- a/install.sql +++ b/install.sql @@ -27,7 +27,7 @@ CREATE TABLE wcf1_chat_room ( permanent tinyint(1) NOT NULL DEFAULT '1', owner int(10) DEFAULT NULL, PRIMARY KEY (roomID), - KEY position (position), + KEY positionKey (position), KEY owner (owner) );