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/0027_never_via_route_servers.py
Matt Griswold 004914edae fix typo (#646)
2020-02-18 21:58:34 -06:00

24 lines
616 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-12-11 16:33
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0026_help_text_228"),
]
operations = [
migrations.AddField(
model_name="network",
name="info_never_via_route_servers",
field=models.BooleanField(
default=False,
help_text="Indicates if this network will announce its routes via route servers or not",
),
),
]