DEV Community

Discussion on: Django Rest Framework with PostgreSQL: A CRUD Tutorial

Collapse
 
ilonajulczuk profile image
Justyna Ilczuk

While following this tutorial I've hit a problem when my tests would not have permissions to create a db for tests. I needed to add additional privileges on my user.

Here is a relevant snippet from the django docs: docs.djangoproject.com/en/3.2/topi...

And here are some instructions how to do this in posgresql: dba.stackexchange.com/questions/33...

For this tutorial it would be:
(within postgresql shell)

ALTER USER myuser CREATEDB;