mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Removed unused __str__() methods in tests models.
Follow up to 6461583b6c
.
This commit is contained in:
parent
bb13711451
commit
555e3a848e
35 changed files with 2 additions and 400 deletions
|
@ -4,17 +4,11 @@ from django.db import models
|
|||
class Poll(models.Model):
|
||||
question = models.CharField(max_length=200)
|
||||
|
||||
def __str__(self):
|
||||
return "Q: %s " % self.question
|
||||
|
||||
|
||||
class Choice(models.Model):
|
||||
poll = models.ForeignKey(Poll, models.CASCADE)
|
||||
choice = models.CharField(max_length=200)
|
||||
|
||||
def __str__(self):
|
||||
return "Choice: %s in poll %s" % (self.choice, self.poll)
|
||||
|
||||
# A set of models with an inner one pointing to two outer ones.
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue