mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 08:27:13 +01:00
eeefc04d3a
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>
6 lines
154 B
SQL
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);
|