我有错误:
Error: One or more models did not validate:
auth.permission: 'content_type' has a relation with model <class 'django.contrib.contenttypes.models.ContentType'>, which has either not been installed or is abstract.
我在包中的任何地方都看不到 django.contrib.contenttypes.models.ContentType 的引用。
即使所有模型都在逗号内,我也会收到此错误。
我多次引用用户,但为什么会出现 content_type 错误呢?
Django==1.4.2
编辑:因为人们认为我的模块被命名为 auth,以下是它在整个项目中存在的位置:
模型.py
2: from django.contrib.auth.models import User
设置.py
94: 'django.contrib.auth.middleware.AuthenticationMiddleware',
112: 'django.contrib.auth',