blob: 084ecad7ba869096ac07aeb64900092728179299 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001# -*- 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', '0017_distro_clone'),
10 ]
11
12 operations = [
13 migrations.AddField(
14 model_name='Project',
15 name='builddir',
16 field=models.TextField(),
17 ),
18 migrations.AddField(
19 model_name='Project',
20 name='merged_attr',
21 field=models.BooleanField(default=False)
22 ),
23 migrations.AddField(
24 model_name='Build',
25 name='progress_item',
26 field=models.CharField(max_length=40)
27 ),
28 ]