21 lines
612 B
Python
21 lines
612 B
Python
|
|
# Generated by Django 5.2.4 on 2025-07-14 12:46
|
||
|
|
|
||
|
|
import django.db.models.deletion
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('manager', '0004_alter_clonecontainer_memory_and_more'),
|
||
|
|
('proxmox', '0005_alter_lxc_lxc'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='clonecontainer',
|
||
|
|
name='vm',
|
||
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='clone_lxc', to='proxmox.lxc', verbose_name='LXC Container'),
|
||
|
|
),
|
||
|
|
]
|