Change: make workflowrun a softdeletemodel (#11194)

This commit is contained in:
shamoon
2025-10-27 13:51:39 -07:00
committed by GitHub
parent cd81f750b4
commit d0bd111eab
2 changed files with 29 additions and 1 deletions

View File

@@ -1547,7 +1547,7 @@ class Workflow(models.Model):
return f"Workflow: {self.name}"
class WorkflowRun(models.Model):
class WorkflowRun(SoftDeleteModel):
workflow = models.ForeignKey(
Workflow,
on_delete=models.CASCADE,