diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-03-02 21:26:55 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-07 17:23:03 +0000 |
commit | 3db71b408719d8588191edfc3b82554f72283e59 (patch) | |
tree | 32e7d541bfd2888e85ec7d15eef9807740223712 /bitbake/lib/toaster/bldcontrol/migrations | |
parent | 790b2d1387a150b85612ad38a53bab788154e4bb (diff) | |
download | poky-3db71b408719d8588191edfc3b82554f72283e59.tar.gz |
bitbake: toaster: don't use sshbecontroller
Removed usage of sshbecontroller from bbcontroller, models, tests
and database schema.
(Bitbake rev: 3ee06eb7e96de5dba539ad52201867e77d06a53e)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/migrations')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py b/bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py new file mode 100644 index 0000000000..0c2475aba5 --- /dev/null +++ b/bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py | |||
@@ -0,0 +1,19 @@ | |||
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', '0001_initial'), | ||
11 | ] | ||
12 | |||
13 | operations = [ | ||
14 | migrations.AlterField( | ||
15 | model_name='buildenvironment', | ||
16 | name='betype', | ||
17 | field=models.IntegerField(choices=[(0, b'local')]), | ||
18 | ), | ||
19 | ] | ||