Postgresql user permissions

Anyone know if it is possible to create different users with access to different tables in the database? Or is Render not able to host that?

Hi,

You should be able to create users in the standard way through SQL, e.g.:

CREATE USER ...;GRANT SELECT ON ....;

You’d need to refer to the PostgreSQL docs for more.

Alan

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.