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
509 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-01 13:53
from __future__ import unicode_literals
from django.db import migrations
import macaddress.fields
class Migration(migrations.Migration):
dependencies = [
('dcim', '0003_auto_20160628_1721'),
]
operations = [
migrations.AddField(
model_name='interface',
name='mac_address',
field=macaddress.fields.MACAddressField(blank=True, integer=True, null=True),
),
]