Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit 1150666

Browse files
committed
[migrations] Added forgotten migration
1 parent dae62c2 commit 1150666

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.7 on 2018-01-05 12:25
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('django_netjsongraph', '0005_snapshot'),
12+
]
13+
14+
operations = [
15+
migrations.AlterModelOptions(
16+
name='snapshot',
17+
options={'verbose_name_plural': 'snapshots'},
18+
),
19+
migrations.AlterField(
20+
model_name='topology',
21+
name='parser',
22+
field=models.CharField(choices=[('netdiff.OlsrParser', 'OLSRd (txtinfo/jsoninfo)'), ('netdiff.BatmanParser', 'batman-advanced (jsondoc/txtinfo)'), ('netdiff.BmxParser', 'BMX6 (q6m)'), ('netdiff.NetJsonParser', 'NetJSON NetworkGraph'), ('netdiff.CnmlParser', 'CNML 1.0'), ('netdiff.OpenvpnParser', 'OpenVPN')], help_text='Select topology format', max_length=128, verbose_name='format'),
23+
),
24+
]

0 commit comments

Comments
 (0)