mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #2101 -- Renamed maxlength
argument to max_length
for oldforms FormField
s and db model Field
s. This is fully backwards compatible at the moment since the legacy maxlength
argument is still supported. Using maxlength
will, however, issue a PendingDeprecationWarning
when used.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5803 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
973f44aa4c
commit
212ee65be7
88 changed files with 647 additions and 407 deletions
|
@ -1,14 +1,14 @@
|
|||
from django.db import models
|
||||
|
||||
class Poll(models.Model):
|
||||
question = models.CharField(maxlength=200)
|
||||
question = models.CharField(max_length=200)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"Q: %s " % self.question
|
||||
|
||||
class Choice(models.Model):
|
||||
poll = models.ForeignKey(Poll)
|
||||
choice = models.CharField(maxlength=200)
|
||||
choice = models.CharField(max_length=200)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"Choice: %s in poll %s" % (self.choice, self.poll)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue