19 lines
631 B
Python
19 lines
631 B
Python
# Generated by Django 5.2.5 on 2025-12-22 17:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sitemanagement', '0008_alter_zone_options_zone_image_path_zone_model_path_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='zone',
|
|
name='image_path',
|
|
field=models.CharField(blank=True, default='test_image.png', help_text="Например 'public/images/test_image.png' или имя файла из public/images", max_length=255, verbose_name='Путь к изображению'),
|
|
),
|
|
]
|