28 lines
744 B
Python
28 lines
744 B
Python
|
# -*- 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,
|
||
|
),
|
||
|
]
|