Core/Quest: Add support for monthly quests

Author: svetilo12
Converted and updated by: Subv
This commit is contained in:
Vincent-Michael
2012-12-04 00:02:06 +01:00
parent ab63aea08a
commit b2928e59fa
10 changed files with 289 additions and 108 deletions

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `character_queststatus_monthly`;
CREATE TABLE IF NOT EXISTS `character_queststatus_monthly` (
`guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='Player System';