Tweaked migration to include Service model

This commit is contained in:
Jeremy Stretch 2018-07-12 13:08:23 -04:00
parent f7f7764a6e
commit 50f4c74688

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',