Created
July 7, 2019 19:18
-
-
Save akshar-raaj/e4ef5db5049f1e5def6055074a7087dc to your computer and use it in GitHub Desktop.
Search models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Question(models.Model): | |
| question_text = models.CharField(max_length=200) | |
| pub_date = models.DateTimeField('date published', null=True) | |
| author = models.CharField(max_length=200, null=True) | |
| def __str__(self): | |
| return self.question_text | |
| class Choice(models.Model): | |
| question = models.ForeignKey(Question, on_delete=models.CASCADE) | |
| choice_text = models.CharField(max_length=200) | |
| votes = models.IntegerField(default=0) | |
| def __str__(self): | |
| return self.choice_text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment