From b24981d36f47276b1bfee12b215581f65851289a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 28 Nov 2011 15:05:15 +0100 Subject: [PATCH] Removed quotings around numbers. --- install.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sql b/install.sql index b06b2b3..f135cf9 100644 --- a/install.sql +++ b/install.sql @@ -23,8 +23,8 @@ CREATE TABLE wcf1_chat_room ( roomID int(10) NOT NULL AUTO_INCREMENT, title varchar(255) NOT NULL, topic varchar(255) NOT NULL, - position int(10) NOT NULL DEFAULT '0', - permanent tinyint(1) NOT NULL DEFAULT '1', + position int(10) NOT NULL DEFAULT 0, + permanent tinyint(1) NOT NULL DEFAULT 1, owner int(10) DEFAULT NULL, PRIMARY KEY (roomID), KEY positionKey (position),