From 96383b9bd289060b0a3446067bcfd524a76fe9ff Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Fri, 21 Oct 2022 14:08:26 -0400 Subject: [PATCH] Increase max_length of type in Link --- program/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/models.py b/program/models.py index ac422b1c..1eb542dc 100644 --- a/program/models.py +++ b/program/models.py @@ -200,7 +200,7 @@ class LinkType(models.Model): class Link(models.Model): - type = models.CharField(max_length=32) + type = models.CharField(max_length=64) url = models.URLField() class Meta: -- GitLab