Open
Description
I'm trying to upgrade an old codebase from Django 1.5 to 1.11.
Most things seem to be fine so far (!) but I have a problem when migrating from South.
When the initial migration for fluent_pages tries to run, it finds that it needs to create the HtmlPageTranslation table so it really does run that migration (rather than faking it) but the PageLayout table already exists and I get this error:-
django.db.utils.ProgrammingError: relation "fluent_pages_pagelayout" already exists
Any ideas how to fix this?