Browse Source

Pointless migration

Jeremy Stretch 9 years ago
parent
commit
3c7e5e9586
1 changed files with 20 additions and 0 deletions
  1. 20 0
      netbox/extras/migrations/0003_auto_20160412_1332.py

+ 20 - 0
netbox/extras/migrations/0003_auto_20160412_1332.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.1 on 2016-04-12 13:32
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('extras', '0002_topologymap'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='topologymap',
+            name='device_patterns',
+            field=models.TextField(help_text=b'Identify devices to include in the diagram using regular expressions,one per line. Each line will result in a new tier of the drawing. Separate multiple regexes on a line using commas. Devices will be rendered in the order they are defined.'),
+        ),
+    ]