initial work on comparison
This commit is contained in:
parent
06b4cba4bc
commit
4cffe5a9e3
6 changed files with 358 additions and 2 deletions
|
@ -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,
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue