feat(itim): Ability to add configuration to cluster type

ref: #247 closes #71
This commit is contained in:
2024-08-19 14:49:39 +09:30
parent bfb20dab0f
commit 66b8bd5a74
6 changed files with 90 additions and 2 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-08-19 04:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('itim', '0002_clustertype_created_clustertype_modified'),
]
operations = [
migrations.AddField(
model_name='clustertype',
name='config',
field=models.JSONField(blank=True, default=None, help_text='Cluster Type Configuration that is applied to all clusters of this type', null=True, verbose_name='Configuration'),
),
]