0004_interface_mac_address.py 526 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9.7 on 2016-07-05 10:01
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. from ..fields import MACAddressField
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('dcim', '0003_auto_20160628_1721'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='interface',
  13. name='mac_address',
  14. field=MACAddressField(blank=True, null=True, verbose_name=b'MAC Address'),
  15. ),
  16. ]