fix(DB/Character): Allow profanity_name and reserved_name to be accen… (#17224)
fix(DB/Character): Allow profanity_name and reserved_name to be accent sensitive * closes https://github.com/azerothcore/azerothcore-wotlk/issues/13214
This commit is contained in:
parent
fbf7ba2191
commit
4f6a402da3
1 changed files with 6 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
--
|
||||
ALTER TABLE `profanity_name`
|
||||
CHANGE COLUMN `name` `name` VARCHAR(12) NOT NULL COLLATE 'utf8mb4_bin' FIRST;
|
||||
|
||||
ALTER TABLE `reserved_name`
|
||||
CHANGE COLUMN `name` `name` VARCHAR(12) NOT NULL COLLATE 'utf8mb4_bin' FIRST;
|
||||
Loading…
Add table
Add a link
Reference in a new issue