mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
bitbake: toaster: fix migrations
(Bitbake rev: bfb44886c3bec8320e4f845c9ff24ae2a795aa9f) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f0740b038f
commit
1fd160016d
@@ -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')]),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user