When I try to run manage.py migrate in a project using Django 1.8, I get the following error:
There is no South database module 'south.db.postgresql_psycopg2' for your database. Please either choose a supported database, check for SOUTH_DATABASE_ADAPTER[S] settings, or remove South from INSTALLED_APPS.
South needs to be uninstalled manually (pip uninstall South) for manage.py migrate to use the new migration features.
When I try to run
manage.py migrate
in a project using Django 1.8, I get the following error:South needs to be uninstalled manually (
pip uninstall South
) formanage.py migrate
to use the new migration features.