mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 22:03:03 +00:00
13 lines
334 B
Python
13 lines
334 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
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_text=models.CharField(max_length=200)
|
|
votes=models.IntegerField(default=0)
|
|
|