mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
b24775f472
* Add cheat detection for spoofed packets * Add config option for ip loggin * remove packet saving
9 lines
335 B
SQL
9 lines
335 B
SQL
CREATE TABLE IF NOT EXISTS player_cheat_detections (
|
|
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
account_id INT REFERENCES accounts(id),
|
|
name TEXT REFERENCES charinfo(name),
|
|
violation_msg TEXT NOT NULL,
|
|
violation_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(),
|
|
violation_system_address TEXT NOT NULL
|
|
);
|