introduce service offering status

This commit is contained in:
Tobias Brunner 2025-01-31 16:50:50 +01:00
parent a4850683c9
commit 5eb40ffc4f
No known key found for this signature in database
6 changed files with 65 additions and 6 deletions

View file

@ -0,0 +1,26 @@
# 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,
),
),
]