Core/Players: Implemented new glyph system

This commit is contained in:
Shauren
2016-08-25 19:12:00 +02:00
parent e2f133902f
commit a727a99e34
19 changed files with 365 additions and 25 deletions

View File

@@ -0,0 +1,10 @@
--
-- Table structure for table `character_glyphs`
--
DROP TABLE IF EXISTS `character_glyphs`;
CREATE TABLE `character_glyphs` (
`guid` bigint(20) NOT NULL,
`talentGroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
`glyphId` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`,`talentGroup`,`glyphId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;