mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
add blank=True
This commit is contained in:
parent
9154e477ef
commit
dfe398dd18
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue