Core/Players: Fixed saving quest item progress (#1129)

Ported from TC (original commit by Shauren)

Add 2 columns to character_queststatus
This commit is contained in:
Viste(Кирилл)
2018-12-23 16:58:21 +03:00
committed by Barbz
parent fffb925201
commit 204358bb67
3 changed files with 18 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
INSERT INTO version_db_characters (`sql_rev`) VALUES ('1545178470896804464');
ALTER TABLE `character_queststatus`
ADD `itemcount5` smallint(5) unsigned NOT NULL DEFAULT '0' AFTER `itemcount4`,
ADD `itemcount6` smallint(5) unsigned NOT NULL DEFAULT '0' AFTER `itemcount5`;