Skip to content
Snippets Groups Projects
Commit 6bbb5560 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Increase max_length of type in LinkType

parent 4c3abbad
No related branches found
No related tags found
No related merge requests found
...@@ -190,7 +190,7 @@ class Host(ModelWithImageFields, ModelWithCreatedUpdatedFields): ...@@ -190,7 +190,7 @@ class Host(ModelWithImageFields, ModelWithCreatedUpdatedFields):
class LinkType(models.Model): class LinkType(models.Model):
name = models.CharField(max_length=16, help_text="Name of the link type") 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: class Meta:
ordering = ("name",) ordering = ("name",)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment