mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 13:16:23 +00:00
Fix import error for the SQL (#1092)
ERROR 1253 (42000) at line 41: COLLATION 'utf8mb4_bin' is not valid for CHARACTER SET 'utf8'
This commit is contained in:
@@ -24,13 +24,13 @@ INSERT INTO `command` (`name`, `security`, `help`) VALUES ('lookup gobject', 1,
|
||||
|
||||
-- Add deprecated notice
|
||||
UPDATE `command` SET `help` = '[DEPRECATED]: use ".go gobject" instead.\r\nSyntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'
|
||||
WHERE `name` = 'go object' COLLATE utf8mb4_bin;
|
||||
WHERE `name` = 'go object';
|
||||
|
||||
UPDATE `command` SET `help` = '[DEPRECATED]: use ".lookup gobject" instead.\r\nSyntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'
|
||||
WHERE `name` = 'lookup object' COLLATE utf8mb4_bin;
|
||||
WHERE `name` = 'lookup object';
|
||||
|
||||
UPDATE `command` SET `help` = '[DEPRECATED]: use ".list gobject" instead.\r\nSyntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'
|
||||
WHERE `name` = 'list object' COLLATE utf8mb4_bin;
|
||||
WHERE `name` = 'list object';
|
||||
|
||||
--
|
||||
-- END UPDATING QUERIES
|
||||
|
||||
Reference in New Issue
Block a user