24 lines
728 B
Python
24 lines
728 B
Python
# Generated by Django 4.2.7 on 2025-10-11 12:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('services', '0006_service_deliverables_description_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='service',
|
|
name='image2',
|
|
field=models.ImageField(blank=True, help_text='Secondary service image', null=True, upload_to='services/images/'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='service',
|
|
name='image2_url',
|
|
field=models.CharField(blank=True, help_text='External secondary image URL (alternative to uploaded image)', max_length=500),
|
|
),
|
|
]
|