summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/models.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/models.py b/bitbake/lib/toaster/bldcontrol/models.py
index 15270c3a57..f72fb8fbc9 100644
--- a/bitbake/lib/toaster/bldcontrol/models.py
+++ b/bitbake/lib/toaster/bldcontrol/models.py
@@ -62,6 +62,7 @@ class BuildRequest(models.Model):
62 REQ_INPROGRESS = 2 62 REQ_INPROGRESS = 2
63 REQ_COMPLETED = 3 63 REQ_COMPLETED = 3
64 REQ_FAILED = 4 64 REQ_FAILED = 4
65 REQ_DELETED = 5
65 66
66 REQUEST_STATE = ( 67 REQUEST_STATE = (
67 (REQ_CREATED, "created"), 68 (REQ_CREATED, "created"),
@@ -69,6 +70,7 @@ class BuildRequest(models.Model):
69 (REQ_INPROGRESS, "in progress"), 70 (REQ_INPROGRESS, "in progress"),
70 (REQ_COMPLETED, "completed"), 71 (REQ_COMPLETED, "completed"),
71 (REQ_FAILED, "failed"), 72 (REQ_FAILED, "failed"),
73 (REQ_DELETED, "deleted"),
72 ) 74 )
73 75
74 project = models.ForeignKey(Project) 76 project = models.ForeignKey(Project)