Jeremy Stretch 9 лет назад
Родитель
Сommit
3c7e5e9586
1 измененных файлов с 20 добавлено и 0 удалено
  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.'),
+        ),
+    ]