Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0048_auto_20170911_1504.py 640 B
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-09-11 13:04
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('web', '0047_subject_flying_team_from_annotation'),
    ]

    operations = [
        migrations.AlterField(
            model_name='subject',
            name='flying_team',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='web.FlyingTeam', verbose_name=b'Default flying team location (if applicable)'),
        ),
    ]