3 changed files with 23 additions and 0 deletions
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('bgpdata', '0011_auto_20150327_1636'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='crawlrun', |
||||
name='hostsCrawled', |
||||
field=models.ManyToManyField(to='bgpdata.ConfigHost', null=True, blank=True), |
||||
preserve_default=True, |
||||
), |
||||
] |
Loading…
Reference in new issue