Проблема с тестовой базой данных Django Postgresql

Я довольно новичок в django и у меня возникла проблема с db. Я попытался протестировать несколько вещей и получил следующую ошибку:

Creating test database for alias 'default'...
    .... RuntimeWarning: Normally Django will use a connection to the 'postgres' database to avoid running initialization queries against the production database when it's not needed (for example, when running tests). Django was unable to create a connection to the 'postgres' database and will use the first PostgreSQL database instead.
      warnings.warn(
    Got an error creating the test database: permission denied to create database

Я также подключил к нему pg4admin.

У вас есть идеи, как решить эту проблему?

Заранее спасибо

Вернуться на верх