1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/migrations/0050_auto_20200730_0700.py
Matt Griswold 820e0e71e4 black format
2020-08-18 20:18:58 +00:00

33 lines
1011 B
Python

# Generated by Django 2.2.14 on 2020-07-30 07:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0049_deskrpo_ticket_additions"),
]
operations = [
migrations.AddField(
model_name="ixlan",
name="ixf_ixp_import_protocol_conflict",
field=models.IntegerField(
blank=True,
default=0,
help_text="IX has been sending IP addresses for protocol not supported by network",
null=True,
verbose_name="IX-F sent IPs for unsupported protocol",
),
),
migrations.AlterField(
model_name="network",
name="allow_ixp_update",
field=models.BooleanField(
default=False,
help_text="Sepcifies whether an IXP is allowed to add a netixlan entry for this network via their ixp_member data",
),
),
]