mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
348 B
Python
18 lines
348 B
Python
![]() |
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),
|
||
|
),
|
||
|
]
|