エラーが発生しました:
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だと思っているので、プロジェクト全体でモジュールが存在する位置は次のとおりです。
models.py
2: from django.contrib.auth.models import User
settings.py
94: 'django.contrib.auth.middleware.AuthenticationMiddleware',
112: 'django.contrib.auth',