mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
674 B
Python
26 lines
674 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.7 on 2016-06-21 17:28
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('circuits', '0002_auto_20160620_1929'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='provider',
|
||
|
name='admin_contact',
|
||
|
field=models.TextField(blank=True, verbose_name=b'Admin contact'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='provider',
|
||
|
name='noc_contact',
|
||
|
field=models.TextField(blank=True, verbose_name=b'NOC contact'),
|
||
|
),
|
||
|
]
|