summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 9bfc00d667..ee8f1f7166 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -1446,6 +1446,7 @@ class CustomImageRecipe(Recipe):
1446 search_allowed_fields = ['name'] 1446 search_allowed_fields = ['name']
1447 base_recipe = models.ForeignKey(Recipe, related_name='based_on_recipe') 1447 base_recipe = models.ForeignKey(Recipe, related_name='based_on_recipe')
1448 project = models.ForeignKey(Project) 1448 project = models.ForeignKey(Project)
1449 last_updated = models.DateTimeField(null=True, default=None)
1449 1450
1450 def get_last_successful_built_target(self): 1451 def get_last_successful_built_target(self):
1451 """ Return the last successful built target object if one exists 1452 """ Return the last successful built target object if one exists