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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 8d4f21b420..b67afe139c 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -41,7 +41,7 @@ class Build(models.Model):
41 41
42 search_allowed_fields = ['machine', 'cooker_log_path', "target__target", "target__target_image_file__file_name"] 42 search_allowed_fields = ['machine', 'cooker_log_path', "target__target", "target__target_image_file__file_name"]
43 43
44 project = models.ForeignKey(Project) 44 project = models.ForeignKey(Project, null = True)
45 machine = models.CharField(max_length=100) 45 machine = models.CharField(max_length=100)
46 distro = models.CharField(max_length=100) 46 distro = models.CharField(max_length=100)
47 distro_version = models.CharField(max_length=100) 47 distro_version = models.CharField(max_length=100)