What type should I define in my sqlalchemy definition for text for an article or blog entry? I am using MySQL.
Column('article_text', ???)
Column('article_text', sqlalchemy.UnicodeText())
This should work with any supported database, not just mysql.