diff --git a/program/models.py b/program/models.py
index 24a8c540007fb389f30c843e57586e3113e5a07f..ac422b1c739cdf8c806e2c067c11e7347ef236d1 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",)