Django:syncdb 中跳过了应用程序

发布于 2024-10-29 18:22:55 字数 484 浏览 1 评论 0原文

我在 settings.py 中声明了多个应用程序:

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.messages',
'authentication',
'catalogs',
'configurations',
    ...
)

运行 syncdb 时,会跳过 authentication 应用程序,并且不会创建其表,但我没有收到错误。

其他应用都没问题。

我认为某些错误会阻止应用程序正常运行。

对吗?怎么调试呢?

谢谢

I have several applications declared in settings.py:

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.messages',
'authentication',
'catalogs',
'configurations',
    ...
)

When running syncdb the authentication application is skipped and its tables are not created, but I get no error.

The other applications are ok.

I think that some error prevents the application to be run properly.

Is it right? How can debug it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_蜘蛛 2024-11-05 18:22:55

我得到了它!我的代码确实有错误。

只需运行 manage.py shell 并请求 fromauthentication.models import * 就会引发错误。

I got it! There was indeed an error in my code.

Just running manage.py shell and asking for from authentication.models import * made the error raise.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文