mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #1337: Add WWN field to interfaces
This commit is contained in:
17
netbox/dcim/migrations/0134_interface_wwn.py
Normal file
17
netbox/dcim/migrations/0134_interface_wwn.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import dcim.fields
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0133_port_colors'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='interface',
|
||||
name='wwn',
|
||||
field=dcim.fields.WWNField(blank=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user