On Thu, Dec 6, 2012 at 6:18 AM, joy <
agnese.c...@gmail.com> wrote:
> content = models.CharField(max_length=500)
is that size even supported?
models.CharField maps to a VARCHAR() field, which AFAIK, is typically
limited to 255 chars. better use a models.TextField(), it maps to a
TEXT field, which is intended to longer runs of text; typically goes
to 64K.
and on the web form side, the default widget for a models.CharField()
is <input type="text"/>, while for a models.TextField it defaults to
<textarea>
--
Javier