summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2010-02-01 11:53:14 +0000
committerJames Bennett <ubernostrum@gmail.com>2010-02-01 11:53:14 +0000
commite0dd8a930b38a5a729b52fb85d23d1ad58c35064 (patch)
treeaeaa3fbcbbb1efc24459aafafef2ab17b89ec07a /docs/intro/tutorial01.txt
parent1f305a00a0dabd352ad9ceda5a35dedef4f72eb1 (diff)
Fixed #12745: The maxlength -> max_length change happened in 2007, we can probably stop mentioning it in the tutorial now.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12362 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index c2864b8f38..df9dac6a26 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -320,22 +320,6 @@ These concepts are represented by simple Python classes. Edit the
choice = models.CharField(max_length=200)
votes = models.IntegerField()
-.. admonition:: Errors about :attr:`~django.db.models.Field.max_length`
-
- If Django gives you an error message saying that
- :attr:`~django.db.models.Field.max_length` is not a valid argument, you're
- most likely using an old version of Django. (This version of the tutorial is
- written for the latest development version of Django.) If you're using a
- Subversion checkout of Django's development version (see :ref:`the
- installation docs <topics-install>` for more information), you shouldn't have
- any problems.
-
- If you want to stick with an older version of Django, you'll want to switch
- to `the Django 0.96 tutorial`_, because this tutorial covers several features
- that only exist in the Django development version.
-
-.. _the Django 0.96 tutorial: http://www.djangoproject.com/documentation/0.96/tutorial01/
-
The code is straightforward. Each model is represented by a class that
subclasses :class:`django.db.models.Model`. Each model has a number of class
variables, each of which represents a database field in the model.