django-friendship中的OperationalError

时间:2015-12-14 14:23:01

标签: django

django-friendship导致此错误的原因是什么?

Screenshot of error

1 个答案:

答案 0 :(得分:1)

您收到错误No such table friendship_friend,因为您还没有创建数据库表。由于django-friendship应用程序没有任何迁移,您可以尝试为应用程序创建迁移,然后运行它们。

./manage.py makemigrations friendship
./manage.py migrate

如果这不起作用,您可以尝试使用syncdb。

./manage.py syncdb

请注意django-friendship表示已经测试了1.7测试版,因此我不知道它是否适用于Django 1.8。