taskapp/models.py
changeset 165 8ea5bcf3bd01
parent 162 d378eff02f2e
child 166 ac72d641046e
--- a/taskapp/models.py	Tue Mar 02 01:05:24 2010 +0530
+++ b/taskapp/models.py	Tue Mar 02 02:12:57 2010 +0530
@@ -92,7 +92,7 @@
     
     prim_key = models.AutoField(primary_key = True)
     id = models.CharField(max_length = 10, unique = True)
-    title = models.CharField(max_length = 100, unique = True, verbose_name = u"Title", help_text = u"Keep it simple and below 100 chars.")
+    title = models.CharField(max_length = 100, verbose_name = u"Title", help_text = u"Keep it simple and below 100 chars.")
     desc = models.TextField(verbose_name = u"Description")
     status = models.CharField(max_length = 2, choices = STATUS_CHOICES, default = "UP")
     tags_field = TagField()