aboutsummaryrefslogtreecommitdiff
path: root/testmanager/testplanner/migrations/0006_testplan_automated_build_url.py
blob: b624b0edbd38e77b2858fd4f49be88641ce472a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('testplanner', '0005_auto_20140702_1512'),
    ]

    operations = [
        migrations.AddField(
            model_name='testplan',
            name='automated_build_url',
            field=models.ForeignKey(blank=True, to='testrunner.JenkinsJob', null=True),
            preserve_default=True,
        ),
    ]