mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 06:57:28 +00:00
10 lines
369 B
SQL
10 lines
369 B
SQL
DROP TABLE IF EXISTS `player_cheat_detections`;
|
|
CREATE TABLE IF NOT EXISTS player_cheat_detections (
|
|
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
account_id INTEGER REFERENCES accounts(id),
|
|
name TEXT NOT NULL,
|
|
violation_msg TEXT NOT NULL,
|
|
violation_time DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(),
|
|
violation_system_address TEXT NOT NULL
|
|
);
|