diff --git a/vulnerabilities/models.py b/vulnerabilities/models.py index 736ab9ee5..4d52d2d75 100644 --- a/vulnerabilities/models.py +++ b/vulnerabilities/models.py @@ -54,6 +54,7 @@ class Vulnerability(models.Model): help_text="empty if no CVE else VC id", unique=True, null=True, + blank=True, ) summary = models.TextField( help_text="Summary of the vulnerability", @@ -162,6 +163,7 @@ class Meta: "Extra qualifying data for a package such as the name of an OS, " "architecture, distro, etc." ), + blank=True, null=False, )