|
|
@@ -0,0 +1,42 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+# Generated by Django 1.11.12 on 2018-05-22 19:04
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+from django.db import migrations
|
|
|
+import taggit.managers
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('taggit', '0002_auto_20150616_2121'),
|
|
|
+ ('ipam', '0021_vrf_ordering'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='aggregate',
|
|
|
+ name='tags',
|
|
|
+ field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='ipaddress',
|
|
|
+ name='tags',
|
|
|
+ field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='prefix',
|
|
|
+ name='tags',
|
|
|
+ field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='vlan',
|
|
|
+ name='tags',
|
|
|
+ field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='vrf',
|
|
|
+ name='tags',
|
|
|
+ field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
|
+ ),
|
|
|
+ ]
|