xref: /OK3568_Linux_fs/yocto/bitbake/lib/toaster/orm/migrations/0016_clone_progress.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6class Migration(migrations.Migration):
7
8    dependencies = [
9        ('orm', '0015_layer_local_source_dir'),
10    ]
11
12    operations = [
13        migrations.AddField(
14            model_name='build',
15            name='repos_cloned',
16            field=models.IntegerField(default=1),
17        ),
18        migrations.AddField(
19            model_name='build',
20            name='repos_to_clone',
21            field=models.IntegerField(default=1), # (default off)
22        ),
23    ]
24
25