website/hub/services/migrations/0030_serviceoffering_msp.py

24 lines
560 B
Python
Raw Normal View History

2025-05-23 17:43:29 +02:00
# 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",
),
),
]