I installed postgreSQL and psycopg2, then created db and user, I granted all permissions for the user in db, and I made all the changes to settings.py . But while I try to migrate, I get the error django.db.utils.ProgrammingError: permission denied for relation django_migrations
settings.py :
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'easyapp', 'USER': 'krishna', 'PASSWORD': 'sudeep', 'HOST': 'localhost', 'PORT': '', } }
Can someone help me?
python django postgresql psql
Krish
source share