[Answer]-Django postgres reload dump error

1👍

Generally permission denied errors like that are caused by having a DB user who does not have access to the given table. Are you sure that your user has access? When you sign on under your django user’s credentials, what happens when you try to select * from django_contenttypes (unsure of table name, if not that, then django_contenttype_contenttype maybe)?

Leave a comment