21 lines
615 B
Python
21 lines
615 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('main', '0007_auto_20150425_1741'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='relatedhost',
|
||
|
name='interface_id_ipv6',
|
||
|
field=models.CharField(default=b'', max_length=40, blank=True, help_text='The IPv6 interface ID of this host. Use IPv6 notation. Empty = do not set record.', null=True, verbose_name='interface ID IPv6'),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|