From b6528b748d31672fc5d1f9db433c394e273f7c07 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 25 Apr 2015 17:42:27 +0200 Subject: [PATCH] add migration for prev. changeset --- .../migrations/0007_auto_20150425_1741.py | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 nsupdate/main/migrations/0007_auto_20150425_1741.py diff --git a/nsupdate/main/migrations/0007_auto_20150425_1741.py b/nsupdate/main/migrations/0007_auto_20150425_1741.py new file mode 100644 index 0000000..101e7b9 --- /dev/null +++ b/nsupdate/main/migrations/0007_auto_20150425_1741.py @@ -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, + ), + ]