]> git.p6c8.net - pcdenotes.git/blobdiff - notes/models.py
Added copyright notice
[pcdenotes.git] / notes / models.py
index 3584c26e67dd2d4628a6337686ad301d7a6e626f..e4802217c3f4fb49853ad6aae494390eb04df19f 100644 (file)
@@ -8,7 +8,7 @@ NOTE_STATUS = ((0, "Draft"),
                (1, "Published"))            
 
 class Note(models.Model):
-    title = models.CharField(max_length=250, unique=True)
+    title = models.CharField(max_length=250)
     slug = models.SlugField(max_length=250, unique=True)
     author = models.ForeignKey(User, on_delete=models.CASCADE, related_name='notes_posted')
     content = models.TextField()

patrick-canterino.de