I'm trying to use django-tagging in my django app, but I'm getting an SQL error when inserting the field
my model has tags = TagField()
>>> from cms.models import Articles
>>> a=Articles()
>>> a.save()
OperationalError: (1054, "Unknown column 'tags' in 'field list'")
Do I need a "tags" text field on my DB? AFAIK django-tagging just handles that with its tables (tagging_tag and tagging_taggeditem)
thanks
Did you try manage.py syncdb? I recommend using the tagging.register instead of declaring a "tags" field in your model:
models.py:
forms.py: