simply adding check for the convar disablehtml motd to check if webapp misses the updates sometimes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user