I am trying to use admin.LogEntry objects during a datamigration on Django 1.7
The \'django.contrib.admin\'
app is listed on INSTALLED_APPS
just check your "setting.py" in the installed apps section and make sure that you have added your app there :
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
**'you need to add your app here>>>>>>>>>>>>>>>>>>>>>>',
]**