# Generated by Django 5.2.4 on 2025-07-22 13:21 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('proxmox', '0006_lxc_created_at_lxc_updated_at_lxctemplate_created_at_and_more'), ] operations = [ migrations.AddField( model_name='lxctemplate', name='net0', field=models.CharField(blank=True, default='name=eth0,bridge=vmbr0,firewall=0,ip=dhcp', max_length=150, null=True), ), migrations.AlterField( model_name='lxc', name='net0', field=models.CharField(blank=True, default='name=eth0,bridge=vmbr0,firewall=0,ip=dhcp', max_length=150, null=True), ), ]