mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-13 03:49:36 -06:00
22 lines
494 B
Python
22 lines
494 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-07-13 19:24
|
|
from __future__ import unicode_literals
|
|
|
|
import dcim.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('circuits', '0002_auto_20160622_1821'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='provider',
|
|
name='asn',
|
|
field=dcim.fields.ASNField(blank=True, null=True, verbose_name=b'ASN'),
|
|
),
|
|
]
|