27 lines
691 B
Python
27 lines
691 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bgpdata', '0009_auto_20150326_2207'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='as',
|
|
name='lastSeen',
|
|
field=models.ForeignKey(related_name='as_lastseen', default=None, blank=True, to='bgpdata.CrawlRun', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='as',
|
|
name='online',
|
|
field=models.BooleanField(default=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|