Created
March 14, 2018 03:08
-
-
Save filiperfernandes/21b715dcf05338d8aa0f9806eb408d57 to your computer and use it in GitHub Desktop.
Setup Postgres db
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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