# Generated by Django 4.2 on 2026-03-13 11:36

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('master', '0005_package_holiday'),
    ]

    operations = [
        migrations.AddField(
            model_name='city',
            name='image',
            field=models.ImageField(blank=True, null=True, upload_to='city/gallery/'),
        ),
        migrations.AddField(
            model_name='holiday',
            name='image',
            field=models.ImageField(blank=True, null=True, upload_to='holiday/gallery/'),
        ),
    ]
