Tweaked migration to include Service model

This commit is contained in:
Jeremy Stretch 2018-07-12 13:08:23 -04:00
parent fce9c91f91
commit 35a3a356c4

View File

@ -29,6 +29,11 @@ class Migration(migrations.Migration):
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='service',
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',