fix: make wiki link nullable

pull/1/head
palid 2024-01-14 00:24:44 +01:00
parent c9be16b76f
commit f5740e1543
Signed by: palid
SSH Key Fingerprint: SHA256:Mus3wCd2x6nxtARI0DpWGT7lIWbNy3R90BVDg0j35PI
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class Item(models.Model, TreeModelMixin):
name = models.TextField()
wiki_link = models.TextField()
wiki_link = models.TextField(null=True, blank=True)
description = models.TextField(blank=True, null=True)
state = models.CharField(max_length=31, choices=STATES, default=STATES[0][0])
categories = models.ManyToManyField(Category, blank=True)