2020-12-25 19:36:11 +01:00
|
|
|
# Generated by Django 3.1.4 on 2020-12-25 18:14
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-12-25 19:47:05 +01:00
|
|
|
('lostplaces', '0004_gory_fix'),
|
2020-12-25 19:36:11 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='explorer',
|
|
|
|
name='visited_places',
|
|
|
|
field=models.ManyToManyField(blank=True, related_name='explorer_visits', to='lostplaces.Place', verbose_name='Explorers visited places'),
|
|
|
|
),
|
|
|
|
]
|