website/hub/services/migrations/0003_serviceoffering_status.py

27 lines
644 B
Python
Raw Normal View History

2025-01-31 16:50:50 +01:00
# 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,
),
),
]