Created
January 31, 2009 02:54
-
-
Save randyjhunt/55415 to your computer and use it in GitHub Desktop.
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
| # run psql as the postgres user | |
| psql -U postgres | |
| create role USERNAME with createdb login; | |
| \q | |
| # run psql as the newly created user | |
| psql -U USERNAME postgres | |
| create database DBNAME; | |
| \q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment