You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dnmapper/bgpdata/migrations/0009_auto_20150326_2207.py

28 lines
744 B

# -*- 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,
),
]