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

25 lines
617 B
Python
Raw Normal View History

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