19 lines
379 B
Python
19 lines
379 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bgpdata', '0010_auto_20150327_0003'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name='as',
|
||
|
unique_together=set([('crawl', 'number')]),
|
||
|
),
|
||
|
]
|