Ticket #29194: models.py

File models.py, 168 bytes (added by Alberto Misail, 7 years ago)

Models file

Line 
1from django.db import models
2
3# Create your models here.
4class Question(models.Model):
5 question_text = models.TextField()
6 pub_date = models.DateTimeField()
Back to Top