Sith/club/migrations/0005_auto_20161120_1149.py

24 lines
626 B
Python
Raw Normal View History

2016-11-20 10:56:33 +00:00
from __future__ import unicode_literals
import django.db.models.deletion
2024-06-24 11:07:36 +00:00
from django.db import migrations, models
2016-11-20 10:56:33 +00:00
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
]