Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save filiperfernandes/21b715dcf05338d8aa0f9806eb408d57 to your computer and use it in GitHub Desktop.

Select an option

Save filiperfernandes/21b715dcf05338d8aa0f9806eb408d57 to your computer and use it in GitHub Desktop.
Setup Postgres db
CREATE USER locmess WITH PASSWORD 'password';
CREATE DATABASE locmess_db;
\connect locmess_db;
CREATE SCHEMA AUTHORIZATION locmess;
GRANT ALL PRIVILEGES ON DATABASE locmess_db TO locmess;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment