27 lines
644 B
Python
27 lines
644 B
Python
|
# Generated by Django 5.1.5 on 2025-01-31 15:45
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("services", "0002_lead_offering"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="serviceoffering",
|
||
|
name="status",
|
||
|
field=models.CharField(
|
||
|
choices=[
|
||
|
("available", "Available"),
|
||
|
("planned", "Planned"),
|
||
|
("on_request", "On Request"),
|
||
|
],
|
||
|
default="available",
|
||
|
max_length=20,
|
||
|
),
|
||
|
),
|
||
|
]
|