bornhack-website/src/teams/migrations/0044_auto_20180702_1507.py

17 lines
403 B
Python
Raw Normal View History

2018-07-02 21:52:52 +00:00
# Generated by Django 2.0.4 on 2018-07-02 20:07
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("teams", "0043_auto_20180702_1338")]
2018-07-02 21:52:52 +00:00
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="teamshift",
name="team_members",
field=models.ManyToManyField(blank=True, to="teams.TeamMember"),
)
2018-07-02 21:52:52 +00:00
]