introduce service offering status
This commit is contained in:
parent
a4850683c9
commit
5eb40ffc4f
6 changed files with 65 additions and 6 deletions
26
hub/services/migrations/0003_serviceoffering_status.py
Normal file
26
hub/services/migrations/0003_serviceoffering_status.py
Normal 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,
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue