19 lines
452 B
Python
19 lines
452 B
Python
# Generated by Django 2.2.4 on 2019-11-07 20:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('location', '0025_auto_20191107_2005'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='city',
|
|
name='gallery',
|
|
field=models.ManyToManyField(blank=True, null=True, through='location.CityGallery', to='gallery.Image'),
|
|
),
|
|
]
|