From 8cad51965d07a6e395793224fa4103bc4bc2b967 Mon Sep 17 00:00:00 2001 From: Sujith H Date: Wed, 20 Jul 2016 08:57:11 +0000 Subject: bitbake: toaster: add local_source_dir field to model Add a new field local_source_dir to model. This will clearly differentiate us from the vcs_url which is for git path. Adding migration file 0010_layer_local_source_dir_path.py along with this patch. [YOCO #9911] (Bitbake rev: 83763d89f9d0bc535e930a2094ba8201675d40be) Signed-off-by: Sujith H Signed-off-by: Richard Purdie --- bitbake/lib/toaster/orm/models.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/toaster/orm/models.py') diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 1c9f3a9363..432b51e0e1 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -1353,6 +1353,7 @@ class Layer(models.Model): name = models.CharField(max_length=100) layer_index_url = models.URLField() vcs_url = GitURLField(default=None, null=True) + local_source_dir = models.TextField(null = True, default = None) vcs_web_url = models.URLField(null=True, default=None) vcs_web_tree_base_url = models.URLField(null=True, default=None) vcs_web_file_base_url = models.URLField(null=True, default=None) -- cgit v1.2.3-54-g00ecf