dnmapper/bgpdata/migrations/0009_auto_20150326_2207.py

28 lines
744 B
Python
Raw Normal View History

2015-03-27 15:33:54 +01:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('bgpdata', '0008_auto_20150322_1906'),
]
operations = [
migrations.AddField(
model_name='as',
name='directlyCrawled',
field=models.BooleanField(default=False),
preserve_default=True,
),
migrations.AlterField(
model_name='crawllog',
name='host',
field=models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, blank=True, to='bgpdata.ConfigHost', null=True),
preserve_default=True,
),
]