Skip to content

Commit

Permalink
activity: Update description max length
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithpabbati committed Jun 19, 2020
1 parent cb1d1b0 commit 118928b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activity/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_poster_path(self, filename):
date = models.DateField(default=date.today)
category = models.ForeignKey(Category, on_delete=models.PROTECT, related_name='category_author', blank=True, null=True)
tags = models.ManyToManyField(Tag, related_name='tags')
description = RichTextField(max_length=1000, null=True, blank=True)
description = RichTextField(null=True, blank=True)

class Meta:
verbose_name = "News"
Expand Down

0 comments on commit 118928b

Please sign in to comment.