allow the customer description to be empty

This commit is contained in:
Andreas Zweili 2019-07-28 21:41:17 +02:00
parent 113afb4f6c
commit 503ccb4d5a
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class Owner(Company):
class Customer(Company):
name = models.CharField(max_length=50)
description = models.TextField()
description = models.TextField(blank=True)
def __str__(self):
return self.name