server/sql/updates/0.5/1332_character_queststatus.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

18 lines
1.4 KiB
SQL

ALTER TABLE `character_queststatus`
CHANGE `playerid` `guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
CHANGE `questid` `quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
CHANGE `status` `status` int(11) unsigned NOT NULL default '0',
CHANGE `rewarded` `rewarded` int(11) unsigned NOT NULL default '0',
CHANGE `explored` `explored` int(11) unsigned NOT NULL default '0' AFTER `rewarded` ,
CHANGE `timer` `timer` bigint(20) unsigned NOT NULL default '0' AFTER `explored` ,
CHANGE `questMobCount1` `mobcount1` int(11) unsigned NOT NULL default '0',
CHANGE `questMobCount2` `mobcount2` int(11) unsigned NOT NULL default '0',
CHANGE `questMobCount3` `mobcount3` int(11) unsigned NOT NULL default '0',
CHANGE `questMobCount4` `mobcount4` int(11) unsigned NOT NULL default '0',
CHANGE `questItemCount1` `itemcount1` int(11) unsigned NOT NULL default '0',
CHANGE `questItemCount2` `itemcount2` int(11) unsigned NOT NULL default '0',
CHANGE `questItemCount3` `itemcount3` int(11) unsigned NOT NULL default '0',
CHANGE `questItemCount4` `itemcount4` int(11) unsigned NOT NULL default '0',
DROP `id` ,
DROP PRIMARY KEY ,
ADD PRIMARY KEY (`guid`,`quest`) ;