Opened 17 years ago
Closed 17 years ago
#5906 closed (invalid)
Typo in WritingFirstApp/Part1/CreatingModels, polls/models.py should read maxlength not max_length
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
using Django 0.96.1 on WindowsXP/Python24/Mysql50, in tutorial WritingFirstApp/PartOne/CreatingModels, I get an error if I follow these instructions
These concepts are represented by simple Python classes. Edit the polls/models.py file so it looks like this: from django.db import models class Poll(models.Model): question = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') class Choice(models.Model): poll = models.ForeignKey(Poll) choice = models.CharField(max_length=200) votes = models.IntegerField()
I get an error when I run
python manage.py sql polls
unless I remove the underscore from the CharFields of Poll and Choice models to read
... .CharField(maxlength=200)
Note:
See TracTickets
for help on using tickets.