Files

11 lines
367 B
SQL

-- file: modules/classes/stats.ts
DROP TABLE IF EXISTS `player_stats`;
CREATE TABLE `player_stats` (
`id` int NOT NULL,
`name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value` int DEFAULT '0',
`updated` int DEFAULT NULL,
PRIMARY KEY (`id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci