simply adding check for the convar disablehtml motd to check if webapp misses the updates sometimes

This commit is contained in:
jenz
2023-08-01 23:49:29 +02:00
parent b54644c0ea
commit 28bb26e897
2 changed files with 27 additions and 32 deletions
+6 -5
View File
@@ -1,10 +1,11 @@
CREATE TABLE ban_detector.ban_detector (
CREATE TABLE `ban_detector` (
`fingerprint` varchar(512) DEFAULT NULL,
`ip` varchar(64) NOT NULL,
`steamid` varchar(64) NOT NULL,
`name` varchar(128) DEFAULT NULL,
`created_on` datetime DEFAULT CURRENT_TIMESTAMP,
`modified_on` datetime default null,
`last_connect` datetime default null,
`created_on` datetime DEFAULT current_timestamp(),
`modified_on` datetime DEFAULT NULL,
`last_connect` datetime DEFAULT NULL,
`disable_html_motd` int(11) DEFAULT 0,
PRIMARY KEY (`steamid`)
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;