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', '0004_auto_20150321_1607'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='crawllog',
|
|
|
|
name='host',
|
2020-06-06 22:01:51 +02:00
|
|
|
field=models.ForeignKey(to='bgpdata.ConfigHost', null=True, on_delete=models.SET_NULL),
|
2015-03-23 01:42:31 +01:00
|
|
|
preserve_default=True,
|
|
|
|
),
|
|
|
|
]
|