add blank=True

This commit is contained in:
“Mic” 2019-10-05 22:20:40 +02:00
parent 9154e477ef
commit dfe398dd18

View file

@ -67,7 +67,7 @@ class Tag(models.Model):
)
# this is None, alias or permission
db_tagtype = models.CharField(
"tagtype", max_length=16, null=True, help_text="overall type of Tag", db_index=True
"tagtype", max_length=16, null=True, blank=True, help_text="overall type of Tag", db_index=True
)
class Meta(object):