0005_auto_20150520_2250.py 1.04 KB
Newer Older
1
# -*- coding: utf-8 -*-
Kohl Krisztofer committed
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('firewall', '0004_auto_20150318_1317'),
    ]

    operations = [
        migrations.AlterField(
            model_name='host',
            name='groups',
            field=models.ManyToManyField(help_text='Host groups the machine is part of.', to='firewall.Group', verbose_name='groups', blank=True),
        ),
        migrations.AlterField(
            model_name='vlan',
            name='snat_to',
            field=models.ManyToManyField(help_text='Connections to these networks should be network address translated, i.e. their source address is rewritten to the value of NAT IP address.', to='firewall.Vlan', verbose_name='NAT to', blank=True),
        ),
        migrations.AlterField(
            model_name='vlangroup',
            name='vlans',
            field=models.ManyToManyField(help_text='The vlans which are members of the group.', to='firewall.Vlan', verbose_name='vlans', blank=True),
        ),
    ]