19 lines
388 B
Python
19 lines
388 B
Python
|
# Generated by Django 5.1.5 on 2025-02-25 15:38
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("services", "0004_lead_message"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="service",
|
||
|
name="is_featured",
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|