I just comment on all my django cms custom plugins in django settings and transfer it. Then uncomment them and migrate again.
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'django.contrib.sites',
...
)
After that do
python manage.py migrate
And uncomment MY_DJANGO_CMS_PLUGINand run the migration again.
source
share