mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Players: Implemented new glyph system
This commit is contained in:
10
sql/updates/characters/6.x/2016_08_25_00_characters.sql
Normal file
10
sql/updates/characters/6.x/2016_08_25_00_characters.sql
Normal 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;
|
||||
Reference in New Issue
Block a user