it/itf/erang_organised/models.py

12 lines
250 B
Python
Raw Normal View History

2010-08-01 21:50:16 +00:00
from django.db import models
class Issue(models.Model):
title = models.CharField(max_length=255)
2010-10-21 16:51:01 +00:00
summary = models.TextField(blank=True, null=True)
2010-08-01 21:50:16 +00:00
date = models.DateField()
html = models.TextField(blank=True)
# Create your models here.