31 lines
997 B
Python
31 lines
997 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.25 on 2020-05-31 00:00
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bgpdata', '0016_auto_20170117_0103'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='confighost',
|
|
name='checkMethod',
|
|
field=models.CharField(choices=[('CMK', 'Check MK'), ('PLAIN', 'Plain'), ('GOBGP', 'GoBGP')], max_length=10),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='crawllog',
|
|
name='severity',
|
|
field=models.CharField(choices=[('INFO', 'info'), ('ERROR', 'error'), ('DEBUG', 'debug'), ('WARN', 'warning')], max_length=10),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='peering',
|
|
name='origin',
|
|
field=models.CharField(choices=[('path', 'BGP Path'), ('direct', 'Direct Connection')], max_length=10),
|
|
),
|
|
]
|