class TextField(**options)
[source]
A large text field. The default form widget for this field is a Textarea
.
If you specify a max_length
attribute, it will be reflected in the Textarea
widget of the auto-generated form field. However it is not enforced at the model or database level. Use a CharField
for that.
MySQL users
If you are using this field with MySQLdb 1.2.1p2 and the utf8_bin
collation (which is not the default), there are some issues to be aware of. Refer to the MySQL database notes for details.
Please login to continue.