SQLite 数据库缺少 MaxUsers 字段

This commit is contained in:
yeziuku 2025-01-12 15:50:31 +08:00 committed by GitHub
parent 18854781a6
commit b5905a9680
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,8 @@ CREATE TABLE "rooms" (
"RoomState" INTEGER DEFAULT 0,
"IsRank" INTEGER DEFAULT 0,
"HasPass" INTEGER DEFAULT 0,
"Password" TEXT DEFAULT ''
"Password" TEXT DEFAULT '',
"MaxUsers" INTEGER DEFAULT 0
);
-- ----------------------------