I have a database column that will be storing errors/warnings returned from an API - I would usually have a column called 'description' with a varchar(255) but in some (very few cases) this column may need to store a value that is greater than 255 characters (potentially upto 400-500 characters).
This field won't need any ability to search or anything like that, can anyone suggest the best MySQL data type to use for this instance. This will store text and nothing else.
I would presume text - but just wondered what everyone else thought.