mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
15 lines
382 B
SQL
15 lines
382 B
SQL
--
|
|
-- Table structure for table `ntbb_userstats`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `ntbb_userstats`;
|
|
CREATE TABLE `ntbb_userstats` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`serverid` varchar(255) NOT NULL,
|
|
`date` bigint(20) NOT NULL,
|
|
`usercount` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `serverid` (`serverid`),
|
|
KEY `date` (`date`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|