Files

19 lines
501 B
Python
Raw Permalink Normal View History

2026-02-12 17:14:01 +01:00
# Generated by Django 5.2.5 on 2025-08-21 14:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('proxmox', '0003_delete_vm'),
]
operations = [
migrations.AddField(
model_name='lxctemplate',
name='is_default_template',
field=models.BooleanField(default=False, help_text='If true, this template will be used when creating new containers as default, or preselected'),
),
]