From 6bbb5560390dbd5baf1f8b7e3c180f45a625aad3 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Wed, 19 Oct 2022 17:39:43 -0400 Subject: [PATCH] Increase max_length of type in LinkType --- program/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/models.py b/program/models.py index 24a8c540..ac422b1c 100644 --- a/program/models.py +++ b/program/models.py @@ -190,7 +190,7 @@ class Host(ModelWithImageFields, ModelWithCreatedUpdatedFields): class LinkType(models.Model): name = models.CharField(max_length=16, help_text="Name of the link type") - type = models.CharField(max_length=32, help_text="Type of the link") + type = models.CharField(max_length=64, help_text="Type of the link") class Meta: ordering = ("name",) -- GitLab