I keep getting the following error when doing a migration (python manage.py migrate):
django.db.utils.ProgrammingError: column \"name\" of relation \"django_
I had the same problem but I was able to solve it by adding this into my migration dependencies:
('contenttypes', '0002_remove_content_type_name')
Hope it helps!