Importing pending sql

This commit is contained in:
Travis CI
2019-01-06 06:34:18 +00:00
parent 3f45c14822
commit 9a36f5957b
2 changed files with 39 additions and 14 deletions

View File

@@ -1,14 +0,0 @@
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;