Skip to content

Commit

Permalink
fix: revert char limit to 50 to prevent broken db
Browse files Browse the repository at this point in the history
  • Loading branch information
vkWeb committed Mar 3, 2022
1 parent 0b7248e commit b9a6762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contentcuration/contentcuration/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ def delete(self, *args, **kwargs):

class ContentTag(models.Model):
id = UUIDField(primary_key=True, default=uuid.uuid4)
tag_name = models.CharField(max_length=30)
tag_name = models.CharField(max_length=50)
channel = models.ForeignKey('Channel', related_name='tags', blank=True, null=True, db_index=True, on_delete=models.SET_NULL)
objects = CustomManager()

Expand Down

0 comments on commit b9a6762

Please sign in to comment.