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并且未创建其表,但我没有收到错误。

其他应用正常。

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

这样对吗?怎么调试呢?

谢谢

4

1 回答 1

0

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.

于 2011-04-04T08:00:17.783 回答