mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
8 lines
412 B
SQL
8 lines
412 B
SQL
DROP TABLE IF EXISTS `character_aura`;
|
|
CREATE TABLE `character_aura` (
|
|
`guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
|
`spell` int(11) unsigned NOT NULL default '0',
|
|
`effect_index` int(11) unsigned NOT NULL default '0',
|
|
`remaintime` int(11) NOT NULL default '0',
|
|
KEY (`guid`,`spell`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|