mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
25 lines
884 B
Python
25 lines
884 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-07-06 17:22
|
|
import dcim.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0004_auto_20160701_2049'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='interface',
|
|
name='mac_address',
|
|
field=dcim.fields.MACAddressField(blank=True, null=True, verbose_name=b'MAC Address'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='devicetype',
|
|
name='subdevice_role',
|
|
field=models.NullBooleanField(choices=[(None, b'None'), (True, b'Parent'), (False, b'Child')], default=None, help_text=b'Parent devices house child devices in device bays. Select "None" if this device type is neither a parent nor a child.', verbose_name=b'Parent/child status'),
|
|
),
|
|
]
|