# Generated by Django 3.2.8 on 2021-11-02 13:31 import common.models from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('firewall', '0006_auto_20170707_1909'), ] operations = [ migrations.AlterField( model_name='host', name='normalized_hostname', field=common.models.HumanSortField(blank=True, default='', max_length=80, monitor='hostname'), ), migrations.AlterField( model_name='record', name='type', field=models.CharField(choices=[('A', 'A'), ('CNAME', 'CNAME'), ('AAAA', 'AAAA'), ('MX', 'MX'), ('NS', 'NS'), ('PTR', 'PTR'), ('TXT', 'TXT')], max_length=6, verbose_name='type'), ), migrations.AlterField( model_name='rule', name='action', field=models.CharField(choices=[('accept', 'accept'), ('drop', 'drop'), ('ignore', 'ignore')], default='drop', help_text='Accept, drop or ignore the matching packets.', max_length=10, verbose_name='action'), ), migrations.AlterField( model_name='rule', name='direction', field=models.CharField(choices=[('out', 'out'), ('in', 'in')], help_text='If the rule matches egress or ingress packets.', max_length=3, verbose_name='direction'), ), migrations.AlterField( model_name='rule', name='proto', field=models.CharField(blank=True, choices=[('tcp', 'tcp'), ('udp', 'udp'), ('icmp', 'icmp')], help_text='Protocol of packets that match.', max_length=10, null=True, verbose_name='protocol'), ), ]