dnmapper/bgpdata/migrations/0006_auto_20150321_1845.py

27 lines
703 B
Python
Raw Normal View History

2015-03-23 01:42:31 +01:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('bgpdata', '0005_auto_20150321_1608'),
]
operations = [
migrations.AddField(
model_name='borderrouter',
name='routerID',
field=models.GenericIPAddressField(default=None),
preserve_default=False,
),
migrations.AlterField(
model_name='crawllog',
name='host',
2020-06-06 22:01:51 +02:00
field=models.ForeignKey(blank=True, to='bgpdata.ConfigHost', null=True, on_delete=models.CASCADE),
2015-03-23 01:42:31 +01:00
preserve_default=True,
),
]