mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 10:59:36 -06:00
21 lines
589 B
Python
21 lines
589 B
Python
# Generated by Django 5.0.9 on 2024-10-11 19:45
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0193_poweroutlet_color'),
|
|
('ipam', '0073_vlantranslationpolicy_vlantranslationrule'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='interface',
|
|
name='vlan_translation_policy',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='ipam.vlantranslationpolicy'),
|
|
),
|
|
]
|