1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00

IX-F JSON postmortem/preview for networks (#505) (#564)

This commit is contained in:
Matt Griswold
2019-09-07 01:08:37 -05:00
committed by GitHub
parent 31c0fdb118
commit f78b68dc2e
24 changed files with 1398 additions and 167 deletions

View File

@@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-08-19 11:33
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.manager
class Migration(migrations.Migration):
dependencies = [
('peeringdb_server', '0018_set_ixf_ixp_import_enabled'),
]
operations = [
migrations.AlterModelManagers(
name='ixlan',
managers=[
('handleref', django.db.models.manager.Manager()),
],
),
migrations.AddField(
model_name='ixlanixfmemberimportlogentry',
name='action',
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name='ixlanixfmemberimportlogentry',
name='reason',
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AlterField(
model_name='commandlinetool',
name='tool',
field=models.CharField(choices=[(b'pdb_renumber_lans', 'Renumber IP Space'), (b'pdb_fac_merge', 'Merge Facilities'), (b'pdb_fac_merge_undo', 'Merge Facilities: UNDO'), (b'pdb_undelete', 'Restore Object(s)'), (b'pdb_ixf_ixp_member_import', 'IX-F Import')], help_text='name of the tool', max_length=255),
),
]