11 lines
198 B
Python
11 lines
198 B
Python
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.
|