mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 13:07:16 +02:00
add blank=True
This commit is contained in:
parent
562e481c24
commit
984b2f099f
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