21 lines
459 B
Python
21 lines
459 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bgpdata', '0004_auto_20150321_1607'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='crawllog',
|
||
|
name='host',
|
||
|
field=models.ForeignKey(to='bgpdata.ConfigHost', null=True),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|