bornhack-website/src/teams/migrations/0004_team_sub_team_of.py

22 lines
554 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-04-01 20:32
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('teams', '0003_auto_20170401_2227'),
]
operations = [
migrations.AddField(
model_name='team',
name='sub_team_of',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='teams.Team'),
),
]