Missing migration

doc_update
Joey Hines 2020-10-09 08:03:17 -05:00
parent 9eabf09fc0
commit 9362f40e2b
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 3.1 on 2020-08-22 17:59
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('GeoffreyApp', '0005_auto_20200109_0154'),
]
operations = [
migrations.AddField(
model_name='player',
name='primary_location',
field=models.OneToOneField(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='GeoffreyApp.location'),
),
]