Add maxUsers column to room database definition

This commit is contained in:
Maximilian Mader 2015-01-10 00:42:32 +01:00
parent 0e7d4d9c07
commit 16643a4ed3
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ CREATE TABLE chat1_room (
showOrder INT(10) NOT NULL DEFAULT 0,
permanent TINYINT(1) NOT NULL DEFAULT 1,
owner INT(10) DEFAULT NULL,
maxUsers INT(10) NOT NULL DEFAULT 0
KEY (showOrder),
KEY (owner)