aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/bldcontrol
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-06-07 16:37:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-14 11:08:58 +0100
commitbfb44886c3bec8320e4f845c9ff24ae2a795aa9f (patch)
treefc9b20ed61f67625207000676ab365208c5819bc /lib/toaster/bldcontrol
parent8ae2fc26fc7c4f42817dece62b9a59fbda27c0b0 (diff)
downloadbitbake-contrib-bfb44886c3bec8320e4f845c9ff24ae2a795aa9f.tar.gz
toaster: fix migrations
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'lib/toaster/bldcontrol')
-rw-r--r--lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py b/lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py
new file mode 100644
index 000000000..3d9062954
--- /dev/null
+++ b/lib/toaster/bldcontrol/migrations/0004_auto_20160523_1446.py
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('bldcontrol', '0003_add_cancelling_state'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='buildenvironment',
+ name='bbstate',
+ field=models.IntegerField(default=0, choices=[(0, 'stopped'), (1, 'started')]),
+ ),
+ migrations.AlterField(
+ model_name='buildenvironment',
+ name='betype',
+ field=models.IntegerField(choices=[(0, 'local')]),
+ ),
+ migrations.AlterField(
+ model_name='buildenvironment',
+ name='lock',
+ field=models.IntegerField(default=0, choices=[(0, 'free'), (1, 'lock'), (2, 'running')]),
+ ),
+ migrations.AlterField(
+ model_name='buildrequest',
+ name='state',
+ field=models.IntegerField(default=0, choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (3, 'completed'), (4, 'failed'), (5, 'deleted'), (6, 'cancelling'), (7, 'archive')]),
+ ),
+ ]