pricelist on offering detail
This commit is contained in:
parent
5b4392f838
commit
d9a04655ed
6 changed files with 496 additions and 38 deletions
23
hub/services/migrations/0030_serviceoffering_msp.py
Normal file
23
hub/services/migrations/0030_serviceoffering_msp.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# 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",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue