added an attribute called is_valid to request model just in case we need it in future.
authornishanth
Fri, 26 Feb 2010 14:35:32 +0530
changeset 115 52f2b9968ccd
parent 114 38793914921b
child 116 cb7f54ed5866
added an attribute called is_valid to request model just in case we need it in future.
taskapp/models.py
--- a/taskapp/models.py	Fri Feb 26 13:22:13 2010 +0530
+++ b/taskapp/models.py	Fri Feb 26 14:35:32 2010 +0530
@@ -139,6 +139,7 @@
     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)