Ok, I have a MySQL table called "Articles" that is used to store some information about an article (ID, Author, release date, etc) and the body of the article.
Now, I WAS useing LONGTEXT for the body field, but discovered that for anything like an actual article, the amount of data this stores it WAY too short.
My question is, is there any kind of dynamic text colum type that can store any amount of text you give it?
I'd rather not resort to blobs, as they cause a problem in searching.