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 6ead38a commit 740529eCopy full SHA for 740529e
backend/core/models.py
@@ -246,6 +246,7 @@ class Prediction(models.Model):
246
("FINISHED", "FINISHED"),
247
("FAILED", "FAILED"),
248
)
249
+ description = models.TextField(max_length=500, null=True, blank=True)
250
created_at = models.DateTimeField(default=timezone.now)
251
started_at = models.DateTimeField(null=True, blank=True)
252
finished_at = models.DateTimeField(null=True, blank=True)
0 commit comments