11
Quote:
Changing from tinytext to medium text gives the user a lot more space to add stuff which might not be a good idea. Shame there isn't an inbetweenie.
TINYTEXT == 257 bytes
TEXT == 65538 bytes (64KB)
MEDIUMTEXT == 16777219 bytes (16MB!)
LONGTEXT == 4294967300 bytes (4GB!!!)
So... hmmm... TEXT is way too big, MEDIUMTEXT makes no sense at all. Perhaps a nice way to avoid nasty things (like someone using their 64KB to store random data instead of a sig) would be retrieving the sig with a SUBSTRING query, so that the admin can have a granular control of the amount of data retrieved (also, limiting the post operation seems worthy). I'd say we're talking about a max of 500 - 2k bytes here, right?