mirror of
https://github.com/araxiaonline/wow.ets.modules.git
synced 2026-06-13 02:32:21 -04:00
11 lines
367 B
SQL
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
|
|
|