Psycopg2.errors.insufficientprivilege: Permission Denied For Relation Django_migrations
What my settings.py for DB looks like: ALLOWED_HOSTS = ['*'] DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'fishercode
Solution 1:
Please try using the below command, this worked for me
GRANT rds_superuser TO username;
Post a Comment for "Psycopg2.errors.insufficientprivilege: Permission Denied For Relation Django_migrations"