mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
9 lines
383 B
SQL
9 lines
383 B
SQL
DROP TABLE IF EXISTS `character_spell_cooldown`;
|
|
CREATE TABLE `character_spell_cooldown` (
|
|
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
|
|
`time` int(11) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (`guid`,`spell`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
|