afkbowflexin
afkbowflexin

Reputation: 4089

Django Error "no such column: tagging_tag.name"

I got this after installing the tagging application. I've installed it via settings.py as well as placing it on the import path so I think I've done everything right there. This is what turns up. You can see my error log here. I've run syncdb, so my database should be synced up.

Upvotes: 1

Views: 1630

Answers (1)

gruszczy
gruszczy

Reputation: 42158

Have you checked output of syncdb and actually seen, that table was created? Take a look into your database and check, whether the table is created. If not, run syncdb again and if this doesn't help, create the table by hand (or drop the database and create it again from scratch).

Upvotes: 3

Related Questions