From cb7366ac1e84756da35a9b4c082f959342484a82 Mon Sep 17 00:00:00 2001 From: Rohith Asrk Date: Tue, 20 Feb 2018 12:56:38 +0530 Subject: [PATCH] [migrations] Added a migration file for link_status_changed and openvpn_parser --- .../0003_link_status_and_openvpn_parser.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 openwisp_network_topology/migrations/0003_link_status_and_openvpn_parser.py diff --git a/openwisp_network_topology/migrations/0003_link_status_and_openvpn_parser.py b/openwisp_network_topology/migrations/0003_link_status_and_openvpn_parser.py new file mode 100644 index 00000000..740b1df4 --- /dev/null +++ b/openwisp_network_topology/migrations/0003_link_status_and_openvpn_parser.py @@ -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'), + ), + ]