diff options
| author | ShinDarth <borzifrancesco@gmail.com> | 2014-10-18 13:05:47 +0200 |
|---|---|---|
| committer | ShinDarth <borzifrancesco@gmail.com> | 2014-10-18 18:37:39 +0200 |
| commit | e806fc8a02dbde324dd9654b0165a7cac5ae7086 (patch) | |
| tree | 1eda6d5ec3adc207cbbdac6860ec20d63d7b5cb1 /sql/updates | |
| parent | 2523b476190438e446f76c522efbdce329dd08bf (diff) | |
Core/Quest: implement Quest Tracker
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/characters/2014_10_18_00_characters.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/characters/2014_10_18_00_characters.sql b/sql/updates/characters/2014_10_18_00_characters.sql new file mode 100644 index 00000000000..36b2d042374 --- /dev/null +++ b/sql/updates/characters/2014_10_18_00_characters.sql @@ -0,0 +1,12 @@ +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; |
