0005_reorder_buildrequest_states.py 554 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('bldcontrol', '0004_auto_20160523_1446'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='buildrequest',
  11. name='state',
  12. field=models.IntegerField(choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (3, 'failed'), (4, 'deleted'), (5, 'cancelling'), (6, 'completed'), (7, 'archive')], default=0),
  13. ),
  14. ]