27 lines
703 B
Python
27 lines
703 B
Python
# -*- 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),
|
|
),
|
|
]
|