Files
pytry/django_try/mysite/polls/models.py
T
2014-02-05 10:44:04 +05:30

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)