Skip to content

Commit 740529e

Browse files
feat: add description field to Prediction model
1 parent 6ead38a commit 740529e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/core/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ class Prediction(models.Model):
246246
("FINISHED", "FINISHED"),
247247
("FAILED", "FAILED"),
248248
)
249+
description = models.TextField(max_length=500, null=True, blank=True)
249250
created_at = models.DateTimeField(default=timezone.now)
250251
started_at = models.DateTimeField(null=True, blank=True)
251252
finished_at = models.DateTimeField(null=True, blank=True)

0 commit comments

Comments
 (0)