Skip to content

Commit 9612dc4

Browse files
committed
increase usecase summary size
1 parent 72395b2 commit 9612dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/models/UseCase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class UseCase(models.Model):
1515
id = models.AutoField(primary_key=True)
1616
title = models.CharField(max_length=200, unique=True, blank=True, null=True)
17-
summary = models.CharField(max_length=1000, blank=True, null=True)
17+
summary = models.CharField(max_length=10000, blank=True, null=True)
1818
logo = models.ImageField(upload_to=_use_case_directory_path, blank=True, null=True)
1919
created = models.DateTimeField(auto_now_add=True)
2020
modified = models.DateTimeField(auto_now=True)

0 commit comments

Comments
 (0)