Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
This help me in resolving this error
GRANT ALL PRIVILEGES ON DATABASE your_database to your_database_user; ALTER DATABASE your_database OWNER TO your_database_user;
Hi there,
Once you’ve added your new database user, you would also need to add the required privileges so that the user would have access to your database in question.
With the DigitalOcean Managed database clusters, you can do that by following the steps from the documentation here:
https://docs.digitalocean.com/products/databases/postgresql/how-to/modify-user-privileges/
psql "postgresql://doadmin:your_password@cluster-do-user-1234567-0.db.ondigitalocean.com:25060/defaultdb?sslmode=require"
\connect example_database
your_user with your user name:GRANT ALL PRIVILEGES ON DATABASE your_database TO your_user;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO your_user;
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO your_user;
Let me know how it goes after that!
Best,
Bobby