diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-16 14:35:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-16 14:36:03 +0100 |
commit | 0c1b8bf5494e0dcd9322623c5573ccc411891381 (patch) | |
tree | 3d2ea753da2f9a3eec0c5a11b735824a082f3265 | |
parent | 53b1fa2d3e1244c46a705d9a40ca0dbee92eab98 (diff) | |
download | poky-0c1b8bf5494e0dcd9322623c5573ccc411891381.tar.gz |
bitbake: Add missing file from 'toaster: Allow git information to be null for BRLayer'
(Bitbake rev: 3c762873bb8dc8a3cf89b26579a38d58f6731e04)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py b/bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py new file mode 100644 index 0000000000..4be42a4cf9 --- /dev/null +++ b/bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py | |||
@@ -0,0 +1,29 @@ | |||
1 | # -*- coding: utf-8 -*- | ||
2 | from __future__ import unicode_literals | ||
3 | |||
4 | from django.db import migrations, models | ||
5 | |||
6 | |||
7 | class Migration(migrations.Migration): | ||
8 | |||
9 | dependencies = [ | ||
10 | ('bldcontrol', '0006_brlayer_local_source_dir'), | ||
11 | ] | ||
12 | |||
13 | operations = [ | ||
14 | migrations.AlterField( | ||
15 | model_name='brlayer', | ||
16 | name='commit', | ||
17 | field=models.CharField(max_length=254, null=True), | ||
18 | ), | ||
19 | migrations.AlterField( | ||
20 | model_name='brlayer', | ||
21 | name='dirpath', | ||
22 | field=models.CharField(max_length=254, null=True), | ||
23 | ), | ||
24 | migrations.AlterField( | ||
25 | model_name='brlayer', | ||
26 | name='giturl', | ||
27 | field=models.CharField(max_length=254, null=True), | ||
28 | ), | ||
29 | ] | ||