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',
你碰巧有一個名爲「auth」的應用程序嗎? –