PostgreSQL Add User

Table of Contents

PostgreSQL Add User

CREATE USER user_name WITH PASSWORD 'user_password';
GRANT ALL PRIVILEGES ON DATABASE "database_name" to user_name;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO user_name;

-soiqualang_chentreu-

Leave a Reply

Your email address will not be published. Required fields are marked *