feat(itim): Ability to add configuration to cluster type
ref: #247 closes #71
This commit is contained in:
18
app/itim/migrations/0003_clustertype_config.py
Normal file
18
app/itim/migrations/0003_clustertype_config.py
Normal 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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user