2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00
cheat.sheets/sheets/_psql/users

12 lines
230 B
Plaintext
Raw Normal View History

2018-01-07 11:42:08 +00:00
# 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>';