django-stringfield
A field intended for strings that typically has a length less than 500
characters. django-stringfield tries to not to enforce length on database level
if possible but different databases have different limitations. Currently
implemented as:PostgreSQL
- character varying
MySQL- VARCHAR (65528) [1]
Oracle- VARCHAR2 (4000)
SQLite & Other backends- TEXT
转载于:https://www.cnblogs.com/lexus/archive/2012/05/16/2504120.html