netbox/netbox/extras/migrations/0004_topologymap_change_comma_to_semicolon.py
2018-08-14 11:58:42 -04:00

19 lines
682 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-11-03 18:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('extras', '0003_exporttemplate_add_description'),
]
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 within a line using semicolons. Devices will be rendered in the order they are defined.'),
),
]