Skip to content

Commit

Permalink
add migration for prev. changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Apr 25, 2015
1 parent c8d8727 commit b6528b7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions nsupdate/main/migrations/0007_auto_20150425_1741.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('main', '0006_auto_20141121_1057'),
]

operations = [
migrations.AlterField(
model_name='relatedhost',
name='interface_id_ipv4',
field=models.CharField(default=b'', max_length=16, blank=True, help_text='The IPv4 interface ID of this host. Use IPv4 notation. Empty = do not set record.', null=True, verbose_name='interface ID IPv4'),
preserve_default=True,
),
migrations.AlterField(
model_name='relatedhost',
name='interface_id_ipv6',
field=models.CharField(default=b'', max_length=22, 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,
),
]

0 comments on commit b6528b7

Please sign in to comment.