Files
Aurora.3/SQL/migrate-2023/V018__language_saving_fix.sql
Matt Atlas eeefc04d3a Fixes saving characters with multiple long-name languages. (#21262)
This is a bug that affects characters with multiple long language names:
`language":"Elyran+Standard=&Sol+Common=&Encoded+Audio+Language="`
This exceeds the limit of 50 characters for the language column, thus
bricking the saving.

The limit has been changed to 75 characters.

---------

Co-authored-by: Matt Atlas <liermattia@gmail.com>
2025-09-29 22:07:10 +00:00

6 lines
154 B
SQL

--
-- Fixes saving a character with multiple languages with long names. PR #21262
--
ALTER TABLE `ss13_characters` MODIFY COLUMN `language` VARCHAR(75);