25 lines
640 B
Python
25 lines
640 B
Python
|
# 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,
|
||
|
),
|
||
|
),
|
||
|
]
|