Fix transmog migration

New insert was added without delete in 18d6acfb83
This adds the delete statement.
This commit is contained in:
Rochet2
2022-09-03 10:37:47 +03:00
committed by GitHub
parent e20d44bce4
commit 7485647bef

View File

@@ -25,7 +25,7 @@ INSERT INTO `acore_string` (`entry`, `content_default`) VALUES
(@STRING_ENTRY+15, 'Performing transmog appearance sync....'),
(@STRING_ENTRY+16, 'Appearance sync complete.');
DELETE FROM `command` WHERE `name` IN ('transmog', 'transmog add', 'transmog add set');
DELETE FROM `command` WHERE `name` IN ('transmog', 'transmog add', 'transmog sync', 'transmog add set');
INSERT INTO `command` (`name`, `security`, `help`) VALUES
('transmog', 0, 'Syntax: .transmog <on/off>\nAllows seeing transmogrified items and the transmogrifier NPC.'),
('transmog add', 1, 'Syntax: .transmog add $player $item\nAdds an item to a player\'s appearance collection.'),