X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/f99300eecfd92abe9b7b442456694950fb3c54fa..e066dce5d28b9230039a600d9c8171c1389165a2:/notes/models.py diff --git a/notes/models.py b/notes/models.py index 3584c26..e480221 100644 --- a/notes/models.py +++ b/notes/models.py @@ -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()