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/0008_auto_20160621_1843.py
2016-06-21 14:44:00 -04:00

21 lines
556 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-06-21 18:43
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dcim', '0007_module_discovered'),
]
operations = [
migrations.AlterField(
model_name='interface',
name='mgmt_only',
field=models.BooleanField(default=False, help_text=b'This interface is used only for out-of-band management', verbose_name=b'OOB Management'),
),
]