mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
Co-authored-by: Kirk Scheibelhut <kjs@google.com> Co-authored-by: Kirk Scheibelhut <kjs@google.com>
10 lines
327 B
SQL
10 lines
327 B
SQL
CREATE TABLE `ntbb_loginthrottle` (
|
|
`ip` varchar(63) COLLATE utf8mb4_bin NOT NULL,
|
|
`count` int(11) NOT NULL,
|
|
`lastuserid` varchar(63) COLLATE utf8mb4_bin NOT NULL,
|
|
`time` int(11) NOT NULL,
|
|
PRIMARY KEY (`ip`),
|
|
KEY `count` (`count`),
|
|
KEY `time` (`time`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
|