mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(DB): Collation error (#18204)
* fix(DB): Collation error * closes https://github.com/azerothcore/azerothcore-wotlk/issues/18202 * Update 2024_01_20_06.sql
This commit is contained in:
@@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `item_dbc` (
|
||||
`InventoryType` int NOT NULL DEFAULT '0',
|
||||
`SheatheType` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_world.item_dbc: ~0 rows (approximately)
|
||||
DELETE FROM `item_dbc`;
|
||||
|
||||
@@ -67,7 +67,7 @@ CREATE TABLE IF NOT EXISTS `lfgdungeons_dbc` (
|
||||
`Description_Lang_Unk` text,
|
||||
`Description_Lang_Mask` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_world.lfgdungeons_dbc: ~0 rows (approximately)
|
||||
DELETE FROM `lfgdungeons_dbc`;
|
||||
|
||||
Reference in New Issue
Block a user