I\'m attempting to run heroku run python manage.py syncdb on my GeoDjango app on Heroku, but I get the following error:
heroku run python manage.py syncdb
AttributeError: \'Databa
I changed my default db engine from psycopg2 to postgis
psycopg2
postgis
PREVIOUSLY
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', ..., } }
NOW
DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', ..., } }