summaryrefslogtreecommitdiffstats
path: root/bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-13 22:03:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:07 +0100
commit27fa181897b54ee5a6151faf836df90a60163292 (patch)
treef467b8789de2b1a29c6ea95851e87ab7748b34a2 /bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
parentaf04a52bf7d7ae94c187e85028a80dee6d7853f0 (diff)
downloadpoky-27fa181897b54ee5a6151faf836df90a60163292.tar.gz
bitbake: toaster: Remove mismerged files
Another patch added migrations in the correct location (different date) so these in the wrong directory can be removed. (Bitbake rev: 8aa84abc952835792db1614b6fe2305ab9dca9e1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py')
-rw-r--r--bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py b/bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
deleted file mode 100644
index 4a70e2d8e8..0000000000
--- a/bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
+++ /dev/null
@@ -1,34 +0,0 @@
1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('bldcontrol', '0003_add_cancelling_state'),
11 ]
12
13 operations = [
14 migrations.AlterField(
15 model_name='buildenvironment',
16 name='bbstate',
17 field=models.IntegerField(choices=[(0, 'stopped'), (1, 'started')], default=0),
18 ),
19 migrations.AlterField(
20 model_name='buildenvironment',
21 name='betype',
22 field=models.IntegerField(choices=[(0, 'local')]),
23 ),
24 migrations.AlterField(
25 model_name='buildenvironment',
26 name='lock',
27 field=models.IntegerField(choices=[(0, 'free'), (1, 'lock'), (2, 'running')], default=0),
28 ),
29 migrations.AlterField(
30 model_name='buildrequest',
31 name='state',
32 field=models.IntegerField(choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (3, 'completed'), (4, 'failed'), (5, 'deleted'), (6, 'cancelling'), (7, 'archive')], default=0),
33 ),
34 ]