initial commit of ban detection project, still missing features and have to do more in regards to js
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE ban_detector (
|
||||
`fingerprint` varchar(512) NOT NULL,
|
||||
`ip` varchar(64) NOT NULL,
|
||||
`steamid` varchar(64),
|
||||
`name` varchar(128),
|
||||
`logged_message` boolean default false,
|
||||
`created_on` datetime DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`fingerprint`, `ip`)
|
||||
)
|
||||
Reference in New Issue
Block a user