DB/Characters: fix base dumps

This commit is contained in:
ShinDarth
2016-08-14 12:31:40 +02:00
parent 42e5f13101
commit f6b759adce
9 changed files with 41 additions and 41 deletions

View File

@@ -10,14 +10,14 @@ DROP TABLE IF EXISTS `character_glyphs`;
CREATE TABLE `character_glyphs`
(
`guid` int(10) unsigned NOT NULL,
`spec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`talentGroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
`glyph1` smallint(5) unsigned DEFAULT '0',
`glyph2` smallint(5) unsigned DEFAULT '0',
`glyph3` smallint(5) unsigned DEFAULT '0',
`glyph4` smallint(5) unsigned DEFAULT '0',
`glyph5` smallint(5) unsigned DEFAULT '0',
`glyph6` smallint(5) unsigned DEFAULT '0',
PRIMARY KEY (`guid`,`spec`)
PRIMARY KEY (`guid`,`talentGroup`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;