new feature: Stats
This commit is contained in:
9
Stats/resources/create.sql
Normal file
9
Stats/resources/create.sql
Normal file
@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS `{prefix}players` (
|
||||
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`uuid` binary(16) NOT NULL,
|
||||
`serverNick` varchar(32) NOT NULL,
|
||||
`kills` int DEFAULT 0,
|
||||
`deaths` int UNSIGNED DEFAULT 0,
|
||||
`voteCount` int UNSIGNED DEFAULT 0,
|
||||
PRIMARY KEY `id` (`id`)
|
||||
) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
Reference in New Issue
Block a user