Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlinhoshk/d109de65a32f2200c2d5a5f5beef9e17 to your computer and use it in GitHub Desktop.
Save carlinhoshk/d109de65a32f2200c2d5a5f5beef9e17 to your computer and use it in GitHub Desktop.
Create User to Database
CREATE USER nome_do_usuario WITH PASSWORD 'senha_do_usuario';
GRANT ALL PRIVILEGES ON DATABASE nome_do_banco_de_dados TO nome_do_usuario;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment