Core/DataStores: Support all new hotfix status values

This commit is contained in:
Shauren
2021-02-28 01:14:33 +01:00
parent 3e3b93b509
commit c86cffe5ef
6 changed files with 47 additions and 36 deletions

View File

@@ -0,0 +1,6 @@
ALTER TABLE `hotfix_data` ADD `Status` tinyint(3) unsigned NOT NULL DEFAULT '3' AFTER `Deleted`;
UPDATE `hotfix_data` SET `Status`=1 WHERE `Deleted`=0;
UPDATE `hotfix_data` SET `Status`=2 WHERE `Deleted`=1;
ALTER TABLE `hotfix_data` DROP `Deleted`;