23 lines
560 B
Python
23 lines
560 B
Python
# Generated by Django 5.2 on 2025-05-23 15:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("services", "0029_alter_computeplangroup_options"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="serviceoffering",
|
|
name="msp",
|
|
field=models.CharField(
|
|
choices=[("VS", "VSHN")],
|
|
default="VS",
|
|
max_length=2,
|
|
verbose_name="Managed Service Provider",
|
|
),
|
|
),
|
|
]
|