25 lines
574 B
Python
25 lines
574 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bgpdata', '0007_auto_20150322_1828'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='peering',
|
||
|
name='routers',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='borderrouterpair',
|
||
|
name='peering',
|
||
|
field=models.ForeignKey(default=None, to='bgpdata.Peering'),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|