20 lines
504 B
Python
20 lines
504 B
Python
|
# 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'),
|
||
|
),
|
||
|
]
|