You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
703 B

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-28 14:35
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('whoisdb', '0004_auto_20170228_1041'),
]
operations = [
migrations.AddField(
model_name='inetnum',
name='address',
field=models.GenericIPAddressField(db_index=True, default='10.0.0.0'),
preserve_default=False,
),
migrations.AlterField(
model_name='contact',
name='type',
field=models.CharField(choices=[('person', 'PERSON')], max_length=10),
),
]