initial work on comparison

This commit is contained in:
Tobias Brunner 2025-05-27 17:07:55 +02:00
parent 06b4cba4bc
commit 4cffe5a9e3
No known key found for this signature in database
6 changed files with 358 additions and 2 deletions

View file

@ -0,0 +1,24 @@
# Generated by Django 5.2 on 2025-05-27 15:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("services", "0031_externalpriceplans"),
]
operations = [
migrations.AddField(
model_name="externalpriceplans",
name="service_level",
field=models.CharField(
blank=True,
choices=[("BE", "Best Effort"), ("GA", "Guaranteed Availability")],
help_text="Service level equivalent for comparison",
max_length=2,
null=True,
),
),
]