mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
20 lines
468 B
Python
20 lines
468 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10 on 2016-09-15 16:08
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('ipam', '0007_prefix_ipaddress_add_tenant'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='prefix',
|
||
|
options={'ordering': ['vrf', 'family', 'prefix'], 'verbose_name_plural': 'prefixes'},
|
||
|
),
|
||
|
]
|