0005_auto_20160706_1722.py 925 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9.7 on 2016-07-06 17:22
  3. from __future__ import unicode_literals
  4. import dcim.fields
  5. from django.db import migrations, models
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('dcim', '0004_auto_20160701_2049'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='interface',
  13. name='mac_address',
  14. field=dcim.fields.MACAddressField(blank=True, null=True, verbose_name=b'MAC Address'),
  15. ),
  16. migrations.AlterField(
  17. model_name='devicetype',
  18. name='subdevice_role',
  19. 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'),
  20. ),
  21. ]