mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
Core/Quest: implement Quest Tracker (#1233)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
INSERT INTO version_db_characters (`sql_rev`) VALUES ('1546637940772193620');
|
||||
|
||||
DROP TABLE IF EXISTS `quest_tracker`;
|
||||
CREATE TABLE `quest_tracker` (
|
||||
`id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`character_guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`quest_accept_time` DATETIME NOT NULL,
|
||||
`quest_complete_time` DATETIME DEFAULT NULL,
|
||||
`quest_abandon_time` DATETIME DEFAULT NULL,
|
||||
`completed_by_gm` BOOL NOT NULL DEFAULT '0',
|
||||
`core_hash` VARCHAR(120) NOT NULL DEFAULT '0',
|
||||
`core_revision` VARCHAR(120) NOT NULL DEFAULT '0'
|
||||
)
|
||||
ENGINE=InnoDB;
|
||||
Reference in New Issue
Block a user