fix - distribution description blank=True
This commit is contained in:
@@ -714,7 +714,7 @@ class QuotaDistribution(BaseModel):
|
||||
related_name='distributions',
|
||||
null=True
|
||||
)
|
||||
description = models.TextField(max_length=1000, null=True)
|
||||
description = models.TextField(max_length=1000, null=True, blank=True)
|
||||
distribution_id = models.CharField(max_length=20, null=True)
|
||||
quota = models.ForeignKey(
|
||||
Quota,
|
||||
|
||||
Reference in New Issue
Block a user