mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
29 lines
792 B
Python
29 lines
792 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.4 on 2016-12-29 16:23
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0023_devicetype_comments'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='site',
|
|
name='contact_email',
|
|
field=models.EmailField(blank=True, max_length=254, verbose_name=b'Contact E-mail'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='site',
|
|
name='contact_name',
|
|
field=models.CharField(blank=True, max_length=50),
|
|
),
|
|
migrations.AddField(
|
|
model_name='site',
|
|
name='contact_phone',
|
|
field=models.CharField(blank=True, max_length=20),
|
|
),
|
|
]
|