geogame/geogame/main/migrations/0002_game_country.py

20 lines
504 B
Python

# Generated by Django 2.2.4 on 2019-08-22 21:56
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('main', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='game',
name='country',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='game_country', to='main.Country'),
),
]