New migrations

This commit is contained in:
M.Ravi 2023-12-06 20:41:05 +05:30
commit 0a3d2a5b3a
15 changed files with 799 additions and 532 deletions

View file

@ -0,0 +1,19 @@
# Generated by Django 4.2.7 on 2023-12-06 13:41
import datacenterlight.cms_models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('datacenterlight', '0007_dclcalculatorpluginmodel_vm_templates_to_show_and_more'),
]
operations = [
migrations.AddField(
model_name='dclcalculatorpluginmodel',
name='vm_templates_to_show',
field=datacenterlight.cms_models.MultipleChoiceArrayField(base_field=models.CharField(blank=True, max_length=256), blank=True, default=list, help_text='Recommended: If you wish to show all templates of the corresponding VM Type (public/ipv6only), please do not select any of the items in the above field. This will allow any new template(s) added in the backend to be automatically listed in this calculator instance.', size=None),
),
]