mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Quest: Add support for monthly quests
Author: svetilo12 Converted and updated by: Subv
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user