Fixes an SQL error from maximum name length (#16305)

* Reduces maximum name length

* Revert "Reduces maximum name length"

This reverts commit 7d0fe75c54.

* why were these in _compile_options.dm

* SQL Stuff
This commit is contained in:
SabreML
2021-07-25 15:51:47 +01:00
committed by GitHub
parent 01dfe5c7b7
commit 63412043ee
8 changed files with 15 additions and 11 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ CREATE TABLE `characters` (
`ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`slot` int(2) NOT NULL,
`OOC_Notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`real_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
`real_name` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_is_always_random` tinyint(1) NOT NULL,
`gender` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
`age` smallint(4) NOT NULL,