taskapp/models.py
changeset 33 0d0ea7b188d5
parent 22 36d3173ab7f9
child 38 7910ff503036
--- a/taskapp/models.py	Fri Feb 05 15:42:35 2010 +0530
+++ b/taskapp/models.py	Fri Feb 05 16:05:54 2010 +0530
@@ -46,7 +46,7 @@
 
 class Task(models.Model):
     
-    title = models.CharField(max_length = 200, unique = True)
+    title = models.CharField(max_length = 100, unique = True)
     desc = models.TextField()
     status = models.CharField(max_length = 2, choices = STATUS_CHOICES, default = "UP")
     tags = models.CharField(max_length = 200, blank = True)