Adding polls app while working through django tutorial

This commit is contained in:
2024-09-15 21:26:11 -04:00
parent b1197d5c6a
commit 11d4baf648
12 changed files with 78 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField("date published")
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)