We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c23b8 commit d2d3311Copy full SHA for d2d3311
api/models/UseCase.py
@@ -21,7 +21,9 @@ class UseCase(models.Model):
21
id = models.AutoField(primary_key=True)
22
title = models.CharField(max_length=200, unique=True, blank=True, null=True)
23
summary = models.CharField(max_length=10000, blank=True, null=True)
24
- logo = models.ImageField(upload_to=_use_case_directory_path, blank=True, null=True)
+ logo = models.ImageField(
25
+ upload_to=_use_case_directory_path, max_length=300, blank=True, null=True
26
+ )
27
created = models.DateTimeField(auto_now_add=True)
28
modified = models.DateTimeField(auto_now=True)
29
website = models.URLField(blank=True)
0 commit comments