36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-03-02 03:14
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('whoisdb', '0011_auto_20170301_0306'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='asblock',
|
||
|
name='admin_c',
|
||
|
field=models.ManyToManyField(to='whoisdb.Contact'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='asnumber',
|
||
|
name='admin_c',
|
||
|
field=models.ManyToManyField(to='whoisdb.Contact'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='inetnum',
|
||
|
name='admin_c',
|
||
|
field=models.ManyToManyField(to='whoisdb.Contact'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='asnumber',
|
||
|
name='volatile',
|
||
|
field=models.BooleanField(default=False, help_text='Check if this AS is not going to be online 24/7 (for example on a laptop)'),
|
||
|
),
|
||
|
]
|