无法将 VersionAdmin 与不支持保存点的数据库一起使用
Cannot use VersionAdmin with a database that does not support savepoints
我使用 django-reversion 时突然收到此错误。
django.core.exceptions.ImproperlyConfigured: Cannot use VersionAdmin
with a database that does not support savepoints.
发生在admin.site.register(Post,PostAdmin)
行
无法在我的本地使用 python manage.py,尽管在我的作品中一切正常。
甚至尝试过更改数据库 (postgresql) 但无济于事。
问题是设置没有占用我的数据库。
我使用的本地设置存在拼写错误。而且它没有显示错误,因为在 try, except 块中,我没有写 ImportError.
我使用 django-reversion 时突然收到此错误。
django.core.exceptions.ImproperlyConfigured: Cannot use VersionAdmin with a database that does not support savepoints.
发生在admin.site.register(Post,PostAdmin)
无法在我的本地使用 python manage.py,尽管在我的作品中一切正常。
甚至尝试过更改数据库 (postgresql) 但无济于事。
问题是设置没有占用我的数据库。
我使用的本地设置存在拼写错误。而且它没有显示错误,因为在 try, except 块中,我没有写 ImportError.