initial
This commit is contained in:
23
proxmox/migrations/0007_lxctemplate_net0_alter_lxc_net0.py
Normal file
23
proxmox/migrations/0007_lxctemplate_net0_alter_lxc_net0.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user