24 lines
608 B
Python
24 lines
608 B
Python
# Generated by Django 2.2.4 on 2019-11-10 13:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('location', '0026_auto_20191107_2010'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='citygallery',
|
|
name='old_id',
|
|
field=models.IntegerField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='city',
|
|
name='gallery',
|
|
field=models.ManyToManyField(blank=True, through='location.CityGallery', to='gallery.Image'),
|
|
),
|
|
]
|