blob: cd4023b6f5c7788b3667351215ca2d6321f4d550 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001# -*- 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