mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-22 05:12:22 -06:00
Add the enabled filed to InterfaceTemplate
This commit is contained in:
18
netbox/dcim/migrations/0168_interface_template_enabled.py
Normal file
18
netbox/dcim/migrations/0168_interface_template_enabled.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.5 on 2023-01-09 07:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0167_module_status'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='interfacetemplate',
|
||||
name='enabled',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user