19 lines
479 B
Python
19 lines
479 B
Python
# Generated by Django 4.2.7 on 2025-09-25 08:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('services', '0003_service_category_service_deliverables_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='service',
|
|
name='process_steps',
|
|
field=models.TextField(blank=True, help_text='Process steps in JSON format or comma-separated'),
|
|
),
|
|
]
|