2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/_psql/users
2018-01-17 16:13:38 +00:00

12 lines
234 B
Plaintext

-- List roles
SELECT rolname FROM pg_roles;
-- Create user
CREATE USER <user_name> WITH PASSWORD '<password>';
-- Drop user
DROP USER IF EXISTS <user_name>;
-- Alter user password
ALTER ROLE <user_name> WITH PASSWORD '<password>';