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
#******************models.py**************************************************# | |
from django.db import models | |
from django.contrib.auth.models import User | |
class Question(models.Model): | |
question = models.TextField() | |
def __str__(self): | |
return self.question | |