schon/geo/migrations/0012_alter_country_neighbours.py

19 lines
482 B
Python

# Generated by Django 4.1 on 2022-12-06 20:56
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('geo', '0011_auto_20180108_0706'),
]
operations = [
migrations.AlterField(
model_name='country',
name='neighbours',
field=models.ManyToManyField(related_name='_geo_country_neighbours_+', to=settings.GEO_COUNTRY_MODEL),
),
]