Skip to content

Commit 16627fc

Browse files
committed
Avoid migration dependency on on optional taggit module
1 parent 9615254 commit 16627fc

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Diff for: fluent_faq/migrations/0001_initial.py

-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
from __future__ import unicode_literals
33

44
from django.db import models, migrations
5-
import taggit_autosuggest.managers
65
from django.conf import settings
76
import fluent_faq.models
87

98

109
class Migration(migrations.Migration):
1110

1211
dependencies = [
13-
('taggit', '0002_auto_20150616_2121'),
1412
('sites', '0001_initial'),
1513
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
1614
]
@@ -65,7 +63,6 @@ class Migration(migrations.Migration):
6563
('author', models.ForeignKey(editable=False, to=settings.AUTH_USER_MODEL, verbose_name='author')),
6664
('category', models.ForeignKey(related_name='questions', verbose_name='Category', to='fluent_faq.FaqCategory')),
6765
('parent_site', models.ForeignKey(default=fluent_faq.models._get_current_site, editable=False, to='sites.Site')),
68-
('tags', taggit_autosuggest.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', blank=True, help_text='A comma-separated list of tags.', verbose_name='Tags')),
6966
],
7067
options={
7168
'ordering': ('order', 'creation_date'),

0 commit comments

Comments
 (0)