mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 02:25:38 +01:00
Core/DataStores: Support all new hotfix status values
This commit is contained in:
6
sql/updates/hotfixes/master/2021_02_28_00_hotfixes.sql
Normal file
6
sql/updates/hotfixes/master/2021_02_28_00_hotfixes.sql
Normal 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`;
|
||||
Reference in New Issue
Block a user