Archived
1
0

Merge pull request #14 from MrBrass/master

This one's been bugging me for way too long
This commit is contained in:
Jeff 2015-10-07 20:54:26 -04:00
commit 0b7b248ea1

View File

@ -15,9 +15,9 @@ Setting up postgres (as root)
You'll get a prompt, enter the following: You'll get a prompt, enter the following:
CREATE ROLE srnduser WITH LOGIN PASSWORD 'srndpassword'; CREATE ROLE srnd WITH LOGIN PASSWORD 'srndpassword';
CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnduser; CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnd;
\q \q
Change the username and password as desired. Change the username and password as desired.
The username has to be the same as the database name.