Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.5 / 1150_character_aura.sql
blobc12e074c54d2e91a46900e4612389759752910ca
1 DROP TABLE IF EXISTS `character_aura`;
2 CREATE TABLE `character_aura` (
3   `guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
4   `spell` int(11) unsigned NOT NULL default '0',
5   `effect_index` int(11) unsigned NOT NULL default '0',
6   `remaintime` int(11) NOT NULL default '0',
7   KEY  (`guid`,`spell`)
8 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';