From 8e53e4aa9599e9cd3e2cb5271fad5606f893a8f6 Mon Sep 17 00:00:00 2001 From: sanj Date: Thu, 30 Dec 2010 20:28:15 +0530 Subject: [PATCH] models changed to add date --- padmaTexts/texts/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/padmaTexts/texts/models.py b/padmaTexts/texts/models.py index cb18991..665dc7e 100644 --- a/padmaTexts/texts/models.py +++ b/padmaTexts/texts/models.py @@ -1,6 +1,7 @@ from django.db import models class PadmaText(models.Model): + date = models.DateField(null=True) title = models.CharField(max_length=512) slug = models.SlugField() author = models.CharField(max_length=512, blank=True)