Open
Description
As per #395 icons have been added directly to usernames, which in turn got added to log keeping.
This means that in many sections of the database, there's now an approximate 50 character block of code added.. and with some of the older limits in the database, this will cause a lot of errors.
Tables that I assume will require update:
- character_log, column 'log'
- currencies_log, column 'log'
- items_log, columns 'log' and 'data'
- user_character_log, columns 'log' and 'data'
- user_items, column 'data'
- user_update_log, column 'data'
I strongly suggest upping all of these to varchar(1024)
or potentially text
and that there's a good check if I missed any other table.
Some of these have a really low maximum, like 191.. :/
..why is the max actually 191? It's such an odd number, I would've expected like.. 256, 512 or 1024, byte numbers, not.. 191.
As you're likely well aware, I'd PR this myself but.. I have no idea how to.