diff --git a/netbox/extras/migrations/0003_auto_20160412_1332.py b/netbox/extras/migrations/0003_auto_20160412_1332.py new file mode 100644 index 000000000..4664bdf81 --- /dev/null +++ b/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.'), + ), + ]