Initial code push

This commit is contained in:
Foereaper
2021-07-16 01:08:10 +02:00
parent cce176570d
commit 59d8c37120
13 changed files with 1440 additions and 1 deletions

View File

@ -0,0 +1,10 @@
-- Dumping structure for table character.character_stats_extra
CREATE TABLE IF NOT EXISTS `character_stats_extra` (
`guid` int(11) DEFAULT NULL,
`str` int(11) DEFAULT NULL,
`agi` int(11) DEFAULT NULL,
`stam` int(11) DEFAULT NULL,
`int` int(11) DEFAULT NULL,
`spirit` int(11) DEFAULT NULL,
`points` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;