from django.db import models class Issue(models.Model): title = models.CharField(max_length=255) date = models.DateField() html = models.TextField(blank=True) # Create your models here.