1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00

Removed quotings around numbers.

This commit is contained in:
Tim Düsterhus 2011-11-28 15:05:15 +01:00
parent f57d178654
commit b24981d36f

View File

@ -23,8 +23,8 @@ CREATE TABLE wcf1_chat_room (
roomID int(10) NOT NULL AUTO_INCREMENT, roomID int(10) NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL, title varchar(255) NOT NULL,
topic varchar(255) NOT NULL, topic varchar(255) NOT NULL,
position int(10) NOT NULL DEFAULT '0', position int(10) NOT NULL DEFAULT 0,
permanent tinyint(1) NOT NULL DEFAULT '1', permanent tinyint(1) NOT NULL DEFAULT 1,
owner int(10) DEFAULT NULL, owner int(10) DEFAULT NULL,
PRIMARY KEY (roomID), PRIMARY KEY (roomID),
KEY positionKey (position), KEY positionKey (position),