Skip to content

Commit

Permalink
[migrations] Added a migration file for link_status_changed and openv…
Browse files Browse the repository at this point in the history
…pn_parser
  • Loading branch information
rohithasrk committed Feb 20, 2018
1 parent 7b31350 commit cb7366a
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 2.0.2 on 2018-02-19 14:50

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('topology', '0002_snapshot'),
]

operations = [
migrations.AddField(
model_name='link',
name='status_changed',
field=models.DateTimeField(auto_now=True),
),
migrations.AlterField(
model_name='topology',
name='parser',
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'),
),
]

0 comments on commit cb7366a

Please sign in to comment.