Sith/club/migrations/0005_auto_20161120_1149.py

26 lines
651 B
Python
Raw Normal View History

2016-11-20 10:56:33 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("club", "0004_auto_20160915_1057")]
2016-11-20 10:56:33 +00:00
operations = [
migrations.AlterField(
2018-10-04 19:29:19 +00:00
model_name="club",
name="home",
field=models.OneToOneField(
related_name="home_of_club",
blank=True,
on_delete=django.db.models.deletion.SET_NULL,
verbose_name="home",
null=True,
to="core.SithFile",
),
)
2016-11-20 10:56:33 +00:00
]