When I went to check in postgresql it does not have any superuser like I do to change or create a superuser
Create user:
CREATE USER myuser; CREATE USER myuser WITH PASSWORD ‘mypassword‘;
reference: link
To Change:
ALTER USER myuser WITH SUPERUSER;
Via Pgadmin Youtube link below:
video: link