1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Files
netbox-community-netbox/netbox/dcim/migrations/0004_interface_mac_address.py

22 lines
526 B
Python
Raw Normal View History

2016-07-01 10:30:49 -04:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-07-05 10:01
2016-07-01 10:30:49 -04:00
from __future__ import unicode_literals
from django.db import migrations, models
from ..fields import MACAddressField
2016-07-01 10:30:49 -04:00
class Migration(migrations.Migration):
dependencies = [
('dcim', '0003_auto_20160628_1721'),
]
operations = [
migrations.AddField(
model_name='interface',
name='mac_address',
field=MACAddressField(blank=True, null=True, verbose_name=b'MAC Address'),
2016-07-01 10:30:49 -04:00
),
]