[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / sql / updates / 0.6 / 2617_character_spell_cooldown.sql
blobe41333ac911b4e50ba2a9c99b73fc80beb8bb118
1 DROP TABLE IF EXISTS `character_spell_cooldown`;
2 CREATE TABLE `character_spell_cooldown` (
3   `guid`  int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier, Low part',
4   `spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
5   `time`  int(11) unsigned NOT NULL default '0',
6    PRIMARY KEY  (`guid`,`spell`)
7 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;