From a3f71316a6cb324341c30c318946ca82370cbad9 Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Wed, 19 Jun 2024 00:35:03 +0100 Subject: [PATCH] Max size increase for tracked content unique fields --- apps/home/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/home/models.py b/apps/home/models.py index 4cb988a..768ece9 100644 --- a/apps/home/models.py +++ b/apps/home/models.py @@ -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)