Core/Quest: implement Quest Tracker (#1233)

This commit is contained in:
Viste(Кирилл)
2019-01-06 09:32:17 +03:00
committed by GitHub
parent 3c14bd0faa
commit 3f45c14822
9 changed files with 87 additions and 0 deletions

View File

@@ -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;