Max size increase for tracked content unique fields

This commit is contained in:
Corban-Lee Jones 2024-06-19 00:35:03 +01:00
parent 961e928f62
commit a3f71316a6

View File

@ -248,9 +248,9 @@ class TrackedContent(models.Model):
id = models.AutoField(primary_key=True)
guid = models.CharField(max_length=128)
guid = models.CharField(max_length=256)
title = models.CharField(max_length=128)
title = models.CharField(max_length=728)
url = models.URLField(unique=True)