2016-07-01 10:30:49 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-07-05 10:41:38 -04:00
|
|
|
# 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
|
|
|
|
|
2016-07-05 10:41:38 -04:00
|
|
|
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',
|
2016-07-05 10:41:38 -04:00
|
|
|
field=MACAddressField(blank=True, null=True, verbose_name=b'MAC Address'),
|
2016-07-01 10:30:49 -04:00
|
|
|
),
|
|
|
|
]
|