From 1b74f3cbb2f51753374aff8db738d9b9616274db Mon Sep 17 00:00:00 2001 From: nishanth Date: Fri, 26 Feb 2010 14:35:32 +0530 Subject: added an attribute called is_valid to request model just in case we need it in future. --- taskapp/models.py | 1 + 1 file changed, 1 insertion(+) (limited to 'taskapp') diff --git a/taskapp/models.py b/taskapp/models.py index 4df3d6c..81660d8 100644 --- a/taskapp/models.py +++ b/taskapp/models.py @@ -139,6 +139,7 @@ class Request(models.Model): reply = models.BooleanField(default = False) remarks = models.TextField(default = "",blank = True) is_read = models.BooleanField(default = False) + is_valid = models.BooleanField(default = True) creation_date = models.DateTimeField() reply_date = models.DateTimeField() is_replied = models.BooleanField(default = False) -- cgit