Sqlalchemy type for very long text for articles

What type should I define in my sqlalchemy definition for text for an article or blog entry? I am using MySQL.

Column('article_text', ???)
+5
source share
1 answer
Column('article_text', sqlalchemy.UnicodeText())

This should work with any supported database, not just mysql.

+10
source

All Articles