mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-02-18 10:43:23 +00:00
- Plugin save all players ips to database, when player banned then all used ips are banned too (for ban evading) - Minor changes
9 lines
539 B
SQL
9 lines
539 B
SQL
CREATE TABLE IF NOT EXISTS `sa_players_ips` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`steamid` bigint(20) NOT NULL,
|
|
`address` varchar(64) NOT NULL,
|
|
`used_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `steamid` (`steamid`,`address`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|